Files
react-navigation/packages/stack
2019-05-07 23:21:47 +02:00
..
2019-04-17 14:47:03 +02:00
2019-05-05 13:57:08 +02:00
2018-08-03 14:59:12 -07:00
2019-04-17 14:47:03 +02:00
2019-04-17 14:47:03 +02:00
2019-04-17 14:47:03 +02:00
2018-08-03 14:59:12 -07:00
2019-05-07 23:21:47 +02:00

React Navigation Stack

CircleCI badge

Stack navigator for use on iOS and Android.

Installation

Open a Terminal in your project's folder and run,

yarn add react-navigation-stack

Usage

import { createStackNavigator } from 'react-navigation-stack';

export default createStackNavigator({
  Inbox: InboxScreen
  Drafts: DraftsScreen,
}, {
  initialRouteName: 'Inbox',
});

Development workflow

  • Clone this repository
  • Run yarn in the root directory and in the example directory
  • Run yarn dev in the root directory
  • Run yarn start in the example directory

Docs

Documentation can be found on the React Navigation website.