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
I tried:
case .GalleryScreen: GalleryView().navigationBarBackButtonHidden(true) }
But the back button still flickers on the start and then disappears. Thanks!
The text was updated successfully, but these errors were encountered:
You may want to try .uipNavigationBarHidden(true) on your view.
.uipNavigationBarHidden(true)
e.g:
GalleryView() .uipNavigationBarHidden(true)
It's one of the View extensions provided by UIPilot
UIPilot
Sorry, something went wrong.
You should keep .navigationBarBackButtonHidden(true) if you also want to prevent people from popping routes using swipe gestures.
.navigationBarBackButtonHidden(true)
GalleryView() .uipNavigationBarHidden(true) .navigationBarBackButtonHidden(true) // keep this
No branches or pull requests
I tried:
case .GalleryScreen: GalleryView().navigationBarBackButtonHidden(true) }
But the back button still flickers on the start and then disappears.
Thanks!
The text was updated successfully, but these errors were encountered: