JSPM

react-navigation-stack

1.0.0-alpha.32
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 30787
  • Score
    100M100P100Q36496F
  • License MIT

Stack navigator component for React Navigation

Package Exports

  • react-navigation-stack
  • react-navigation-stack/dist/views/StackView/StackViewStyleInterpolator

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-navigation-stack) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.