我正在尝试更改此视图的背景颜色,但无法做到。我试图在HStack,VSTack甚至ZStack上放置background(Color.green),但是它不起作用,不确定我是否放置在正确的位置。默认情况下,它采用白色的电话或模拟器颜色,但我想应用自定义背景色 我的Xcode版本是11.5
struct HomePageView: View {
@State var size = UIScreen.main.bounds.width / 1.6
var body: some View {
GeometryReader{_ in
VStack {
HStack {
ZStack{
// main home page components here....
NavigationView{
VStack {
AssignmentDaysView()
}.background(Color.lairBackgroundGray)
.frame(width: 100, height: 100, alignment: .top)
.navigationBarItems(leading: Button(action: {
self.size = 10
}, label: {
Image("menu")
.resizable()
.frame(width: 30, height: 30)
}).foregroundColor(.appHeadingColor), trailing:
Button(action: {
print("profile is pressed")
}) {
HStack {
NavigationLink(destination: ProfileView()) {
LinearGradient.lairHorizontalDark
.frame(width: 30, height: 30)
.mask(
Image(systemName: "person.crop.circle")
.resizable()
.scaledToFit()
)
}
}
}
).navigationBarTitle("Home", displayMode: .inline)
}
HStack{
menu(size: self.$size)
.cornerRadius(20)
.padding(.leading, -self.size)
.offset(x: -self.size)
Spacer()
}
Spacer()
}.animation(.spring()).background(Color.lairBackgroundGray)
Spacer()
}
}
}
}
}
struct HomePageView_Previews: PreviewProvider {
static var previews: some View {
HomePageView()
}
}
答案 0 :(得分:2)
在您的NavigationView
中,您有一个VStack
。相反,您可以使用ZStack
并在VStack
下添加背景。
尝试以下操作:
NavigationView {
ZStack {
Color.green // <- or any other Color/Gradient/View you want
.edgesIgnoringSafeArea(.all) // <- optionally, if you want to cover the whole screen
VStack {
Text("assignments")
}
.background(Color.gray)
.frame(width: 100, height: 100, alignment: .top)
}
}
注意:您使用了许多不使用GeometryReader
的堆栈。考虑通过删除不必要的堆栈来简化View。另外,如果您使用UIScreen.main.bounds
,则可能不需要GeometryReader(但是,GeometryReader
在SwiftUI中是首选)。
尝试删除一些图层:您可以从删除最上面的图层开始:GeometryReader
,VStack
,HStack
...
答案 1 :(得分:0)
尝试以下操作:
更改视图背景颜色,特别是安全区域
struct SignUpView: View {
var body: some View {
ZStack {
Color.blue //background color
}.edgesIgnoringSafeArea(.all)