Index

React Native

  1. Install Android Studio
  2. Introduction
  3. Navigation
    1. StackNavigator
    2. Login
    3. DrawerNavigator
    4. Custom Drawer
    5. Image
  4. Formik and Apollo Client
  5. Image Upload
  6. Alert
  7. Keyboard Avoiding View

Navigation

https://www.youtube.com/watch?v=Aa5Hwqv9MkA&list=PLYxzS__5yYQlHANFLwcsSzt3elIbYTG1h&index=20


npm install react-navigation --save
npm install react-navigation-stack --save

// stack needs gesture 1.5.0 is not support yet in expo
npm install react-native-gesture-handler@1.3.0 --save


npm install react-navigation-drawer --save
// Drawer needs react-native-reanimated
npm install react-native-reanimated@1.2.0 --save

npm install react-navigation react-navigation-stack react-native-gesture-handler react-navigation-drawer react-native-reanimated react-native-paper react-native-vector-icons --save



expo install react-native-gesture-handler
expo start --clear

expo install expo-camera