在 Swift UI 中导航 Link 导致灰屏

Navigation Link leading to gray screen in Swift UI

我是 SwiftUI 的新手,我有一个错误,当我使用太多导航 Link 时,我的整个屏幕都会变灰。 在研究错误时我找不到任何解决方案。 我是 运行 最新版本 Xcode 12.4 上的项目。 我当前的设置是有 2 个不同的 swiftUI 视图,每个视图都包含一个导航 Link 到另一个。

This is what it looks like

代码:

PageOne.swift

struct PageOne: View {
    var body: some View {
        NavigationView {
            VStack {
                Text("This is page 1")
                    .font(.system(size: 36, weight: .bold))
                    .padding(.bottom)
                
                NavigationLink(
                    destination: PageTwo(),
                    label: {
                        VStack {
                            Text("Go to Page 2")
                                .font(.system(size: 24, weight: .medium))
                                .foregroundColor(.white)
                                .frame(width: 200, height: 50, alignment: .center)
                                .background(Color.blue)
                                .cornerRadius(12)
                            
                        }
                    })
            }
        }
        .navigationBarHidden(true)
        .navigationBarBackButtonHidden(true)
    }
}

PageTwo.swift

struct PageTwo: View {
    var body: some View {
        NavigationView {
            VStack {
                Text("This is page 2")
                    .font(.system(size: 36, weight: .bold))
                    .padding(.bottom)
                
                NavigationLink(
                    destination: PageOne(),
                    label: {
                        VStack {
                            Text("Go to Page 1")
                                .font(.system(size: 24, weight: .medium))
                                .foregroundColor(.white)
                                .frame(width: 200, height: 50, alignment: .center)
                                .background(Color.blue)
                                .cornerRadius(12)
                            
                        }
                    })
            }
        }
        .navigationBarHidden(true)
        .navigationBarBackButtonHidden(true)
    }
}

Project file

视图层次结构中应该只有一个 NavigationView

尝试在根级别创建一个 NavigationView

struct ContentView: View {
    var body: some View {
        NavigationView {
            PageOne()
                .navigationBarHidden(true)
                .navigationBarBackButtonHidden(true)
        }
    }
}

然后从子视图中删除 NavigationView

struct PageOne: View {
    var body: some View {
        VStack {
            Text("This is page 1")
                .font(.system(size: 36, weight: .bold))
                .padding(.bottom)
            
            NavigationLink(
                destination: PageTwo(),
                label: {
                    VStack {
                        Text("Go to Page 2")
                            .font(.system(size: 24, weight: .medium))
                            .foregroundColor(.white)
                            .frame(width: 200, height: 50, alignment: .center)
                            .background(Color.blue)
                            .cornerRadius(12)
                        
                    }
                })
        }
        .navigationBarHidden(true)
        .navigationBarBackButtonHidden(true)
    }
}
struct PageTwo: View {
    var body: some View {
        VStack {
            Text("This is page 2")
                .font(.system(size: 36, weight: .bold))
                .padding(.bottom)
            
            NavigationLink(
                destination: PageOne(),
                label: {
                    VStack {
                        Text("Go to Page 1")
                            .font(.system(size: 24, weight: .medium))
                            .foregroundColor(.white)
                            .frame(width: 200, height: 50, alignment: .center)
                            .background(Color.blue)
                            .cornerRadius(12)
                        
                    }
                })
        }
        .navigationBarHidden(true)
        .navigationBarBackButtonHidden(true)
    }
}