Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. # init project
  2. expo init xxx
  3.  
  4. # start project
  5. cd ./xxx
  6. npm start
  7.  
  8. # install fonts
  9. expo install expo-font
  10.  
  11. # install icons
  12. expo install @expo/vector-icons
  13.  
  14. # install navigations
  15. expo install react-navigation react-native-gesture-handler react-native-reanimated react-native-screens react-navigation-stack react-navigation-tabs react-navigation-drawer
  16.  
  17. # install header buttons
  18. expo install react-navigation-header-buttons
  19.  
  20. # install material bottom tabs
  21. expo install react-navigation-material-bottom-tabs react-native-paper
  22.  
  23. # install redux
  24. expo install redux react-redux
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement