Skip to content

Instantly share code, notes, and snippets.

@alien3d
Created August 18, 2017 03:17
Show Gist options
  • Select an option

  • Save alien3d/fee025647a8c5f692754105d4e38239b to your computer and use it in GitHub Desktop.

Select an option

Save alien3d/fee025647a8c5f692754105d4e38239b to your computer and use it in GitHub Desktop.
import { Navigation } from 'react-native-navigation';
import { registerScreens } from './screens';
registerScreens();
Navigation.startSingleScreenApp({
screen: {
navBarHidden:true,
screen: 'idcms.LoginScreen', // unique ID registered with Navigation.registerScreen
navigatorStyle: {}, // override the navigator style for the screen, see "Styling the navigator" below (optional)
navigatorButtons: {} // override the nav buttons for the screen, see "Adding buttons to the navigator" below (optional)
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment