背景图片顶部的空间

时间:2020-07-17 06:37:54

标签: swiftui ios14

尝试在SwiftUI中将图像设置为我的视图的背景。使用Xcode 12 beta和iOS 14。

struct ContentView: View {
var body: some View {
    ZStack {
        Image("background")
            .resizable()
            .scaledToFill()
            .frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height, alignment: .center)
            .clipped()
    }
}

}

输出

enter image description here

1 个答案:

答案 0 :(得分:2)

以下内容就足够了(通过Xcode 11.4 / iOS 13.4测试)

var body: some View {
    ZStack {
        Image("background")
            .resizable()
            .scaledToFill()
            .edgesIgnoringSafeArea(.all)
    }
}