We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
InitialPage
MainScreen
1 parent 49ddf51 commit 37a5cc6Copy full SHA for 37a5cc6
App/Containers/Root/RootScreen.js
@@ -11,7 +11,7 @@ import StartupActions from 'App/Stores/Startup/Actions'
11
const AppNav = createStackNavigator(
12
{
13
SplashScreen: { screen: SplashScreen },
14
- InitialPage: { screen: ExampleScreen },
+ MainScreen: { screen: ExampleScreen },
15
},
16
17
// By default the application will show the splash screen
App/Sagas/StartupSaga.js
@@ -14,5 +14,5 @@ export function* startup() {
// ...
// When those operations are finished we redirect to the main screen
- NavigationService.navigateAndReset('InitialPage')
+ NavigationService.navigateAndReset('MainScreen')
18
}
0 commit comments