我正在尝试设置列表的背景色;但它仍然是灰色的。
var body: some View {
List {
ForEach(...) {
Section() {
Text("not the actual code")
}
}
}
.listStyle(InsetGroupedListStyle())
.background(Color.red)
}
.listRowBackground(Color.green)
适用于该行,但不适用于表格的背景颜色
答案 0 :(得分:1)
使用colorMultiply(Color:)
List {
ForEach(...) {
Section() {
Text("not the actual code")
}
}
}.colorMultiply(Color.green).padding(.top)