gpt4 book ai didi

ios - 在 SwiftUI Form 中填充 Section 背景

转载 作者:行者123 更新时间:2023-11-28 13:28:56 26 4
gpt4 key购买 nike

我必须像这样用某种颜色填充一个部分的背景 enter image description here

现在我试过了

NavigationView {
Form {
Section {
Text("Error message!")
}.background(Color.red.opacity(0.2))

Section {
Text("Label 1")
}
Section {
Text("Label 2")
}
}.navigationBarTitle("title", displayMode: NavigationBarItem.TitleDisplayMode.inline)
}

但是,似乎有预定义的填充,所以我无法填充边距

enter image description here

最佳答案

也许这会有所帮助,至少在 Simulator 中这似乎是对您的请求的解决方案:

        NavigationView {
Form {
Section {
HStack {
Text("Error message!")
Spacer()
}
.padding(.vertical)
.listRowInsets(EdgeInsets())
}
.padding(.horizontal)
.background(Color.red.opacity(0.2))

Section {
Text("Label 1")
}
Section {
Text("Label 2")
}
}
.navigationBarTitle("title", displayMode: .inline)
}

关于ios - 在 SwiftUI Form 中填充 Section 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57817232/

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