The following actions are supported:
Read moreHow do you use createDrawerNavigator in react native?
To use this drawer navigator, import it from @react-navigation/drawer :
Read moreHow do I make drawers navigation in react native?
Create two separate classes “DashboardScreen” and “WelcomeScreen” in the react native app to display on screen. Add these screens to createStackNavigator and add “md-menu” icon of ‘react-native-vector-icons/Ionicons’ package. On pressing the menu icon, call navigation. openDrawer() method to open drawer.
Read more