Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 709 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 709 Bytes

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',
});

Docs

Documentation can be found on the React Navigation website.