11

listRowInsets(_:)使用List()and时没有按预期工作List(Data,id)。在下面的示例 1中,零插入完美地工作,而在示例 2中它什么也不做。


示例 1:

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

结果:

示例 1


示例 2

struct ContentView: View {
    var colors: [Color] = [.red, .blue, .yellow]
    var body: some View {
        List(colors, id: \.self) { color in
            color.listRowInsets(.init(top: 0, leading: 0, bottom: 0, trailing: 0))
        }
    }
}

结果:

示例 2

4

2 回答 2

11

我认为原因在于使用过的构造函数。.listRowInsets按文档效果视图被放置在列表中(直接)。

以下作品

var colors: [Color] = [.red, .blue, .yellow]
var body: some View {
    List {
        ForEach(colors, id: \.self) { color in
            color.listRowInsets(.init(top: 0, leading: 0, bottom: 0, trailing: 0))
        }
    }
}
于 2019-11-19T08:33:56.750 回答
0

除了 Asperi 的回答之外,如果您有部分,则需要将 listRowInsets 视图修饰符应用于该部分,否则该设置也会被忽略。

于 2022-02-16T14:09:01.263 回答