Created
August 18, 2017 03:17
-
-
Save alien3d/fee025647a8c5f692754105d4e38239b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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