Drawer Navigation in React Native | React Native Tutorial | React Navigation || Merge Stack & Drawer

Hello guys, In this video I have implemented drawer navigation in React Native. In the previous video we have implemented Stack Navigator, so in this I have merged Stack and Drawer so that we can work with both of them. I have shown how to create custom drawer and how to style all of your drawer item. Code: Installation Steps: #######Parent Package########## npm install @react-navigation/native ######Gesture, layout and animations libraries######## npm install react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view #######Drawer######## npm install @react-navigation/drawer #######Animated- Version 2 ############## npm install react-native-reanimated@~ Go to add this: plugins: [’react-native-reanimated/plugin’], In add this: import ’react-native-gesture-handler’;
Back to Top