gpt4 book ai didi

ios - 如果用数据实例化List,则listRowInsets不起作用

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

使用此简单的ListlistRowInsets修饰符可以按预期工作(红色在列表行中没有插入):

struct ContentView: View {
var body: some View {
List {
Color.red
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 0))
}
}
}

但是,如果使用 List参数实例化了 data,则 listRowInsets停止工作:
struct ContentView: View {
var body: some View {
List(0 ..< 1) { _ in
Color.red
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 0))
}
}
}

在第二个示例中,如何使列表项的内容没有插图?

最佳答案

ListForEach一起使用,如下所示

List {
ForEach(0 ..< 1) { _ in
Color.red
.listRowInsets(EdgeInsets(top: 0, leading: 0, bottom: 0, trailing: 0))
}
}

关于ios - 如果用数据实例化List,则listRowInsets不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61366044/

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