Go to file
Brent Vatne 77d95131a0
Merge pull request #87 from substantial/add-back-font-scaling
iOS Accessibility - add headerBackAllowFontScaling option
2019-02-20 12:47:13 -08:00
.circleci Update Node image 2018-12-19 10:05:13 -08:00
example Remove old README 2019-02-13 21:04:17 -08:00
src Update HeaderBackButton.js 2019-02-20 12:46:45 -08: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 Add development workflow to README 2019-02-04 18:06:03 -08:00
jest-setup.js Mock BaseButton 2018-10-31 15:12:14 -07:00
package.json Release 1.0.10 2019-02-13 20:46:06 -08:00
yarn.lock Upgrade react-native, react, jest 2018-12-12 08:24:41 -08: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',
});

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.