Go to file
Brent Vatne 5313e5d2c1
Merge pull request #23 from michael-palmes/iphonexs-max-and-iphonexr-support
Added window dimensions for iPhone XS Max and iPhone XR
2018-09-24 09:41:56 -07:00
.circleci Initial commit 2018-08-03 14:59:12 -07:00
example Release 0.5.1 2018-09-14 15:27:58 +02:00
src Merge pull request #23 from michael-palmes/iphonexs-max-and-iphonexr-support 2018-09-24 09:41:56 -07:00
.babelrc Initial commit 2018-08-03 14:59:12 -07:00
.editorconfig Initial commit 2018-08-03 14:59:12 -07:00
.eslintignore Initial commit 2018-08-03 14:59:12 -07:00
.eslintrc Fix lint errors and tests 2018-08-22 16:23:40 -07:00
.gitignore Initial commit 2018-08-03 14:59:12 -07:00
LICENSE.md Initial commit 2018-08-03 14:59:12 -07:00
README.md Initial commit 2018-08-03 14:59:12 -07:00
jest-setup.js Initial commit 2018-08-03 14:59:12 -07:00
package.json Merge branch 'master' into missing-dep 2018-09-24 09:41:07 -07:00
yarn.lock Update react-native-screens to alpha.10 2018-09-14 12:51:59 +02:00

README.md

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.