This package has been moved to https://github.com/react-navigation/react-navigation/tree/4.x/packages/drawer
Drawer navigator for use on iOS and Android.
Open a Terminal in the project root and run:
yarn add react-navigation-drawerIf you are using Expo, you are done. Otherwise, continue to the next step.
Install and link react-native-gesture-handler and react-native-reanimated. To install and link them, run:
yarn add react-native-reanimated react-native-gesture-handler
react-native link react-native-reanimated
react-native link react-native-gesture-handlerIMPORTANT: There are additional steps required for react-native-gesture-handler on Android after running react-native link react-native-gesture-handler. Check the this guide to complete the installation.
import{createDrawerNavigator}from'react-navigation-drawer';exportdefaultcreateDrawerNavigator({Inbox: InboxStackDrafts: 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.