mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-05-21 07:42:24 +08:00
56 lines
1.9 KiB
Markdown
56 lines
1.9 KiB
Markdown
# React Navigation [](https://circleci.com/gh/react-community/react-navigation/tree/master) [](https://badge.fury.io/js/react-navigation)
|
|
|
|
*Learn once, navigate anywhere.*
|
|
|
|
Browse the docs on [reactnavigation.org](https://reactnavigation.org/).
|
|
|
|
## Motivation
|
|
|
|
React Navigation is born from the React Native community's need for an
|
|
extensible yet easy-to-use navigation solution. It replaces and improves
|
|
upon several navigation libraries in the ecosystem, including Ex-Navigation,
|
|
React Native's Navigator and NavigationExperimental components. React
|
|
Navigation can also be used across React and React Native projects allowing
|
|
for a higher degree of shared code.
|
|
|
|
Once stable, NavigationExperimental will be deprecated in favor of React
|
|
Navigation. React Navigation is a collaboration between people from
|
|
Facebook, Exponent and the React community at large.
|
|
|
|
## [Getting started](https://reactnavigation.org/docs/intro/)
|
|
|
|
1. Create a new React Native App
|
|
```
|
|
react-native init SimpleApp
|
|
cd SimpleApp
|
|
```
|
|
|
|
2. Install the latest version of react-navigation from npm
|
|
```
|
|
yarn add react-navigation
|
|
```
|
|
or
|
|
```
|
|
npm install --save react-navigation
|
|
```
|
|
|
|
3. Run the new app
|
|
```
|
|
react-native run-android # or:
|
|
react-native run-ios
|
|
```
|
|
|
|
## Advanced guide
|
|
|
|
- [Redux integration](https://reactnavigation.org/docs/guides/redux)
|
|
- [Web integration](https://reactnavigation.org/docs/guides/web)
|
|
- [Deep linking](https://reactnavigation.org/docs/guides/linking)
|
|
- [Contributors guide](https://reactnavigation.org/docs/guides/contributors)
|
|
|
|
## React Navigation API
|
|
|
|
- [Navigators](https://reactnavigation.org/docs/navigators/)
|
|
- [Routers](https://reactnavigation.org/docs/routers/)
|
|
- [Views](https://reactnavigation.org/docs/views/)
|
|
|