In React Native using react-native-router-flux, I have two <Scene/>
and when I apply hideNavBar
to the first one, Login
, it also applies to the second, Home
even though they are on the same level. How can I apply hideNavBar
to only one <Scene/>
, Login
?
const RouterWithRedux = connect()(Router)
const store = configureStore()
export default class App extends Component {
render() {
return (
<Provider store={store}>
<RouterWithRedux>
<Scene key='root'>
<Scene component={Login} hideNavBar initial={true} key='login' title='Login'/>
<Scene component={Home} key='home' title='Home'/>
</Scene>
</RouterWithRedux>
</Provider>
)
}
}