gpt4 book ai didi

ios - ZStack 没有改变颜色

转载 作者:行者123 更新时间:2023-12-01 15:44:21 26 4
gpt4 key购买 nike

我已将 Color.orange 添加到我的 ZStack - 但我的 View 仍然具有默认的白色/灰色背景:

struct Settings: View {
@State var minAge = UserSettings().minAge
@State var maxAge = UserSettings().maxAge
@State var chosenSeeking = UserSettings.Seeking.both

var body: some View {
ZStack {
Color.orange
VStack {
NavigationView {
Form {
Section {
Picker("Look for", selection: $chosenSeeking) {
ForEach(UserSettings.Seeking.allCases) { i in
Text(String(i.rawValue))
}
}
}
Section {
Text("Min age")
Slider(value: $minAge, in: 18...99, step: 1, label: {Text("Label")})
Text(String(Int(minAge)))
}
Section {
Text("Max age")
Slider(value: $maxAge, in: 18...99, step: 1)
Text(String(Int(maxAge)))
}
}.navigationBarTitle(Text("Settings"))
}
}
}
}
}

enter image description here

知道问题出在哪里吗?

最佳答案

我能找到的最好的是 colorMultiply:

NavigationView {
...
}.colorMultiply(.orange)

关于ios - ZStack 没有改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62240204/

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