Skip to content

Instantly share code, notes, and snippets.

@horacioh
Created April 1, 2018 22:37
Show Gist options
  • Save horacioh/9746f19781ebc3a08508acd121106006 to your computer and use it in GitHub Desktop.
Save horacioh/9746f19781ebc3a08508acd121106006 to your computer and use it in GitHub Desktop.
RN Scaffold - PublicNavigator.js
// MyApp/src/app/navigators/PublicNavigator.js
// @flow
import * as React from 'react'
import { SwitchNavigator } from 'react-navigation'
import SignIn from '../../auth/SignInScreen'
import { SIGNIN_ROUTE } from './routes'
const PublicRootNavigator = SwitchNavigator(
{
[SIGNIN_ROUTE]: {
screen: SignIn,
}
},
{
headerMode: 'none',
mode: 'modal',
initialRouteName: SIGNIN_ROUTE
}
)
export default PublicRootNavigator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment