Eric Vicenti 8be65b0ff4
Add explicit main file for react-native
Metro will compile all source files, so we should avoid using dist to support source maps in people's apps. This key provides an explicit reference for metro to follow for react native, while keeping the main entry point for potential web consumption.
2018-09-16 09:17:10 -07:00
2018-08-03 14:59:12 -07:00
2018-09-14 15:27:58 +02:00
2018-09-14 15:26:37 +02:00
2018-08-03 14:59:12 -07:00
2018-08-03 14:59:12 -07:00
2018-08-03 14:59:12 -07:00
2018-08-22 16:23:40 -07:00
2018-08-03 14:59:12 -07:00
2018-08-03 14:59:12 -07:00
2018-08-03 14:59:12 -07:00
2018-08-03 14:59:12 -07:00

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.

Description
No description provided
Readme
Languages
JavaScript 100%