Go to file
Brent Vatne af83d75731
Merge pull request #62 from BrendonSled/patch-1
Bugfix - Card style background
2018-11-27 00:25:14 +07:00
.circleci Initial commit 2018-08-03 14:59:12 -07:00
example Don't fade the back image on Android, use transparent background color 2018-11-03 14:14:10 -07:00
src Update StackViewCard.js 2018-11-26 09:24:47 -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 Initial commit 2018-08-03 14:59:12 -07:00
jest-setup.js Mock BaseButton 2018-10-31 15:12:14 -07:00
package.json Release 1.0.1 2018-11-17 09:19:31 +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.