react-native-navigation的迁移库

showcases.mdx 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---
  2. id: showcases
  3. title: Showcases
  4. sidebar_label: Showcases
  5. ---
  6. ## Apps
  7. ### Hekla for Hacker News
  8. A hacker news client built from the ground up with v2 of react-native-navigation.
  9. It is a tab-based app and utilizes Split Layout for iOS tablets, 3D touch and more.
  10. - [Source code](https://github.com/birkir/hekla)
  11. - [Download iOS](https://itunes.apple.com/us/app/hekla/id1405096983?mt=8)
  12. - [Download Android](https://play.google.com/store/apps/details?id=is.pipe.hekla)
  13. ## Starter Kits
  14. * [kanzitelli/react-native-navigation-starter](https://github.com/kanzitelli/react-native-navigation-starter) - Simple yet practical starter with React Native Navigation (**v5**), [MobX-State-Tree](https://github.com/mobxjs/mobx-state-tree) and [Redux](https://github.com/reduxjs/redux) (pick one) and more goodies inside such as Typescript, [RNN Hooks](https://github.com/underscopeio/react-native-navigation-hooks), [RN Vector Icons](https://github.com/oblador/react-native-vector-icons), [RN Gesture Handler](https://github.com/kmagiera/react-native-gesture-handler). As an example, basic Reddit App implemented in two ways: using [MobX-State-Tree](https://github.com/mobxjs/mobx-state-tree) in `/srcMobX` and using [Redux](https://github.com/reduxjs/redux) in `/srcRedux`.
  15. * [atoami/react-native-navigation-redux-starter-kit](https://github.com/atoami/react-native-navigation-redux-starter-kit) - React Native Navigation(v2) Starter Kit with Redux, Saga, ESLint, Babel and Jest 😎
  16. * [alexwasner/react-native-mobx-firebase-starter](https://github.com/alexwasner/react-native-mobx-firebase-starter) - A React Native starter app with React Native Navigation(v2), MobX, Firebase, Lottie and More 🤓
  17. ### Playground
  18. The playground example is a place where we showcase and test all features of react-native-navigation.
  19. ```bash
  20. git clone https://github.com/wix/react-native-navigation
  21. cd react-native-navigation
  22. npm install
  23. # for iOS:
  24. npm run xcode # Opens XCode
  25. npm start # Starts the packager on linux like systems
  26. # for Android:
  27. # 1. open Android Studio inside ".\playground"
  28. # 2. start a emulator
  29. npm run start-windows # Start the packager if you are on a windows system
  30. # Run the app in Simulator or on Device from within XCode/Android Studio
  31. ```