77d95131a0
iOS Accessibility - add headerBackAllowFontScaling option |
||
---|---|---|
.circleci | ||
example | ||
src | ||
.babelrc | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc | ||
.gitignore | ||
.release-it.json | ||
LICENSE.md | ||
README.md | ||
jest-setup.js | ||
package.json | ||
yarn.lock |
README.md
React Navigation Stack
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 theexample
directory - Run
yarn dev
in the root directory - Run
yarn start
in theexample
directory
Docs
Documentation can be found on the React Navigation website.