2

ナビゲーションビューでフルスクリーンの背景画像が必要です(通常は「この」ビューではなく、基本ビューからのものであるため、一番上にある必要があります)。このビューでは、安全な領域のすぐ内側にある VStack が必要なので、ナビゲーションバーと下部レイアウトの間にあります。

残念ながら私は(写真を参照)

中のテキストを期待していました...ここに画像の説明を入力

struct ContentView: View {
    var body: some View {
        NavigationView {
            ZStack(alignment: .center) {

                Image("laguna")
                    .resizable()
                    .edgesIgnoringSafeArea(.all)
                    .scaledToFill()
                    .frame(width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height)

                VStack(alignment: .center) {
                    Text("just a test")
                        .font(.largeTitle)
                        .foregroundColor(Color.white)
                    Spacer()
                    Text ("not centered....why?")
                        .font(.largeTitle)
                        .foregroundColor(Color.white)

                }
                .zIndex(4)
                .navigationBarTitle("nav bar title")
            }
        }
    }
}
4

2 に答える 2