JSPM

react-navigation

1.0.0-beta.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 79057
  • Score
    100M100P100Q60740F
  • License BSD-2-Clause

React Navigation

Package Exports

  • react-navigation
  • react-navigation/lib-rn/PropTypes
  • react-navigation/lib-rn/addNavigationHelpers
  • react-navigation/lib-rn/views/Header
  • react-navigation/lib-rn/views/HeaderBackButton
  • react-navigation/lib-rn/views/HeaderStyleInterpolator
  • react-navigation/lib/NavigationActions
  • react-navigation/lib/PropTypes
  • react-navigation/lib/StateUtils
  • react-navigation/lib/addNavigationHelpers
  • react-navigation/lib/createNavigationContainer
  • react-navigation/lib/navigators/DrawerNavigator
  • react-navigation/lib/navigators/StackNavigator
  • react-navigation/lib/navigators/TabNavigator
  • react-navigation/lib/navigators/createNavigator
  • react-navigation/lib/react-navigation.web
  • react-navigation/lib/routers/StackRouter
  • react-navigation/lib/routers/TabRouter
  • react-navigation/lib/views/CardStack
  • react-navigation/lib/views/Drawer/DrawerView
  • react-navigation/lib/views/HeaderStyleInterpolator
  • react-navigation/lib/views/HeaderTitle
  • react-navigation/lib/views/TabView/TabView
  • react-navigation/lib/views/Transitioner
  • react-navigation/lib/views/withNavigation
  • react-navigation/src/NavigationActions
  • react-navigation/src/StateUtils
  • react-navigation/src/addNavigationHelpers
  • react-navigation/src/createNavigationContainer
  • react-navigation/src/navigators/StackNavigator
  • react-navigation/src/routers/TabRouter
  • react-navigation/src/routers/getScreenForRouteName
  • react-navigation/src/views/Header
  • react-navigation/src/views/HeaderStyleInterpolator
  • react-navigation/src/views/SceneView

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-navigation) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React Navigation CircleCI npm version

Learn once, navigate anywhere.

Browse the docs on 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

  1. Create a new React Native App
react-native init SimpleApp
cd SimpleApp
  1. Install the latest version of react-navigation from npm
yarn add react-navigation

or

npm install --save react-navigation
  1. Run the new app
react-native run-android # or:
react-native run-ios

Advanced guide

React Navigation API