如何设置SwiftUI v2(2020)InsetGroupedListStyle列表的背景色

时间:2020-07-26 00:06:52

标签: swiftui

我正在尝试设置列表的背景色;但它仍然是灰色的。

var body: some View {
        
        List {
            ForEach(...) {
                Section() {
                    Text("not the actual code")
                }
            }
        }
        .listStyle(InsetGroupedListStyle())
        .background(Color.red)
    }

.listRowBackground(Color.green)适用于该行,但不适用于表格的背景颜色

1 个答案:

答案 0 :(得分:1)

使用colorMultiply(Color:)

List {
        ForEach(...) {
            Section() {
                Text("not the actual code")
            }
        }
    }.colorMultiply(Color.green).padding(.top)