Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push child view in presentModal #4

Open
bsv-doanhnguyen opened this issue Oct 27, 2024 · 0 comments
Open

Push child view in presentModal #4

bsv-doanhnguyen opened this issue Oct 27, 2024 · 0 comments

Comments

@bsv-doanhnguyen
Copy link

Example:
struct HomeView: View {

var body: some View {
    NavigationView {
        ZStack {
            Color.yellow
        
            Button {
                Navigator.push(ListView())
            } label: {
                Text("Home")
                    .foregroundStyle(.white)
            }

        }
        .navigationTitle("DDDD")
        .navigationBarTitleDisplayMode(.inline)
    }
}

}

struct ListView: View {
var body: some View {
VStack {
Spacer()

        Button {
            Navigator.presentModal(
                NavigationView {
                    DetailView()
                }
            )
        } label: {
            Text("Show Detail")
        }
    }
    .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .center)
    .background(.pink)
    .navigationTitle("List View")
}

}

struct DetailView: View {

var body: some View {
        VStack {
            Button {
                Navigator.push(InfoView())
            } label: {
                Text("Show Detail")
            }
        }
        .navigationTitle("Detail View")
        .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .center)
        .background(.green)

}

}

struct InfoView: View {
var body: some View {
Text("Hello")
}
}

DetailView can't get right navigationController to push InfoView? Do you have any solution?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant