Skip to content

Instantly share code, notes, and snippets.

@alien3d
Created August 18, 2017 02:34
Show Gist options
  • Save alien3d/b3ca88fb0269c45fe4fdd842bcf84164 to your computer and use it in GitHub Desktop.
Save alien3d/b3ca88fb0269c45fe4fdd842bcf84164 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)
},
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