gpt4 book ai didi

swiftui - NavigationView swiftui 不是全屏

转载 作者:行者123 更新时间:2023-12-05 07:13:32 26 4
gpt4 key购买 nike

如何从导航 View 中删除顶部空间注意1:没有导航它显示全屏注意 2:如果我在图像中使用这个(.edgesIgnoringSafeArea(.all))它显示全屏但图像未正确填充,请检查两个 ImageView 。

这是我的代码:

 var body: some View {
NavigationView {
GeometryReader { geometry in
ZStack {
Image("splash_screen")
.resizable()
.aspectRatio(geometry.size, contentMode: .fill)
// .edgesIgnoringSafeArea(.all)
//.frame(height: geometry.size.height)
}

}
}
.navigationBarHidden(true)
.navigationBarTitle("")
.navigationBarBackButtonHidden(true)
//.edgesIgnoringSafeArea([.top, .bottom])
.edgesIgnoringSafeArea(.all)
.background(Color .red)

}

enter image description here

最佳答案

适用于此。添加属性 .scaledToFill() 到 Imageview。

 ZStack {
Image("LandingBg")
.resizable()
.scaledToFill()
.edgesIgnoringSafeArea(.all)
// .edgesIgnoringSafeArea(.all)
//.frame(height: geometry.size.height)
}

关于swiftui - NavigationView swiftui 不是全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60168285/

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