-
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
Multiple navigation bars on nested <Scene> #2229
Comments
Sorry, but your desired behaviour (common navbar) it is not correct behaviour (atleast for iOS). iOS UI guides requires own navbar for each tab: RNRF does wrapping scene with navbar internally to achieve that. |
Check latest master, set |
@ChristianTucker is your problem solved??? |
Hello! I just fixed this issue, even tho I did it a little differently. I put |
Quick solution: |
Version
Expected behaviour
There should only be a single navigation bar for the parent
<Scene>
which is the tabBar scene. Each individual scene should not return multiple navigation bars.Actual behaviour
There are two navigation bars, one for the component that is the
tabs={true}
component and one for the nested<Scene>
. You can turn the navigation bar off usinghideNavBar
for thetabs={true}
component and only the navbar for the child component will remain. However, trying to disable the navbar for the child component will disable both navigation bars.Steps to reproduce
The key being rendered here is
home
underrootTabController
The text was updated successfully, but these errors were encountered: