Drawer navigator for use on iOS and Android.
Open a Terminal in your project's folder and run,
yarn add react-navigation-drawerimport { createDrawerNavigator } from 'react-navigation-drawer';
export default createDrawerNavigator({
Inbox: InboxStack
Drafts: DraftsStack,
}, {
initialRouteName: 'Inbox',
contentOptions: {
activeTintColor: '#e91e63',
},
});- Clone this repository
- Run
yarnin the root directory and in theexampledirectory - Run
yarn devin the root directory - Run
yarn startin theexampledirectory
Documentation can be found on the React Navigation website.