I try to use react-native-drawer (https://github.com/root-two/react-native-drawer) in my app with react-native-router-flux
According to the documentation I've added my scene with drawer to the Router:
import NavigationDrawer from './scenes/NavigationDrawer';
import MetricsScene from './scenes/MetricsScene';
...
<Router>
<Scene key="root">
<Scene key="login"
component={LoginScene}
hideNavBar={true}
initial
/>
<Scene key="drawer" component={NavigationDrawer} open={false} >
<Scene key="metrics" component={MetricsScene}/>
</Scene>
</Scene>
</Router>
In my LoginScene I call:
Actions.metrics({type: ActionConst.RESET});
after press on Login button, but NOTHING happens.
Any ideas? Thanks in advance.
Could you try below method
Added the login component