-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
I want to remove the feature in the Navbar. When tab1 first activate, I see "Tab 1" in the navbar, that I would like to keep. When Tab2 is consequentially pressed, I see "Tab 2" in the navbar, but on the left of that, there is a "Tab 1" with the left arrow. How do I remove it?

Below is a snippet from my sample app.
<Router hideNavBar={true}>
<Schema name="default" sceneConfig={Navigator.SceneConfigs.FloatFromRight}/>
<Schema name="modal" icon={TabIcon} sceneConfig={Navigator.SceneConfigs.FloatFromBottom}/>
<Route name="initial" component={Initial} initial={true} wrapRouter={true} title="Sign In"/>
<Route name="register" title="Register" schema="default" component={Register}/>
<Route name="tabbar" schema="modal">
<Router footer={TabBar} showNavigationBar={true}>
<Route name="tab1" schema="modal" title="Tab 1" component={TabView}/>
<Route name="modal" schema="modal" title="X" component={TabView}/>
<Route name="tab2" schema="modal" title="Tab 2" component={TabView}/>
</Router>
</Route>
</Router>
Metadata
Metadata
Assignees
Labels
No labels