-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
NavBars won't "easily show/hide" (iOS 9.2) #80
Comments
It is known problem, see #72. Btw, you always could use own custom navbar and set it as header/footer for Route, and hide it when necessary. |
I'll definitely look into that! |
EDIT: OK, so renderBackButton() {
return <View></View>;
} <Route name="mainview" key="1" renderBackButton={this.renderBackButton.bind(this)} ...... /> |
hideNavBar now is supported for Route |
Hey,
I cannot get the NavBars to show/hide on only some specific views.
An example where I would assume that the "launchpage" view would have its navbar hidden (because the Router says so), but the "loginpage" view navbar would be visible, because it says so. However, the navbar is hidden on all views when the
hideNavBar={true}
is set on the Router:So I tried to remove
hideNavBar={true}
from the router, and set placehideNavBar={false}
on the "loginpage" view, but then the navbar is shown on all pages, not only the "loginpage":I've also tried the
showNavigationBar={true}
, but it doesn't help solving this either. Any ideas here?The text was updated successfully, but these errors were encountered: