Go to file
Brent Vatne 250950d920 Use the first props change while a transition is occuring as the basis of the queued transition
- Subsequent changes are essentially all ignored except for the last one, which is the target
2018-10-29 23:24:47 -07:00
.circleci Initial commit 2018-08-03 14:59:12 -07:00
example Compute scenes when queued transition starts 2018-10-29 22:13:06 -07:00
src Use the first props change while a transition is occuring as the basis of the queued transition 2018-10-29 23:24:47 -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
.release-it.json Release utility 2018-10-15 11:57:46 -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 Depend on core and native 2018-10-12 11:25:12 -07:00
package.json chore: release 1.0.0-alpha.25 2018-10-29 20:06:24 -07:00
yarn.lock update deps for testing 2018-10-29 20:00:58 -07: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.