Created
August 18, 2017 02:34
-
-
Save alien3d/b3ca88fb0269c45fe4fdd842bcf84164 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) | |
}, | |
drawer: { | |
screen: { | |
navBarHidden: true, | |
screen: 'idmcs.ListingScreen', | |
}, | |
screen: { | |
navBarHidden: true, | |
screen: 'idmcs.ProfileScreen', | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment