React Native + react-native-router-flux: How to apply hideNavBar to only one <Scene/>?
问题 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