gpt4 book ai didi

swift - 如何在 SwiftUI 中创建网格

转载 作者:行者123 更新时间:2023-12-01 15:01:25 24 4
gpt4 key购买 nike

我知道我们可以像这样在垂直 SwiftUI 中创建一个列表,

struct ContentView : View {
var body: some View {
NavigationView {
List {
Text("Hello")
}
}
}
}

但是有没有什么方法可以像我们在 UICollectionView 中所做的那样将列表分成 2 或 3 个或者更多的跨度来像网格一样覆盖屏幕

最佳答案

结帐基于 ZStack 的示例 here

Grid(0...100) { _ in
Rectangle()
.foregroundColor(.blue)
}

enter image description here

关于swift - 如何在 SwiftUI 中创建网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56827148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com