We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example:
struct HomeView: View {
}
struct ListView: View {
var body: some View {
VStack {
Spacer()
}
struct DetailView: View {
}
struct InfoView: View {
var body: some View {
Text("Hello")
}
}
DetailView can't get right navigationController to push InfoView? Do you have any solution?
The text was updated successfully, but these errors were encountered: