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.
1 parent bf774f1 commit 1b8b5f9Copy full SHA for 1b8b5f9
App/Containers/Root/RootScreen.js
@@ -11,12 +11,13 @@ import StartupActions from 'App/Stores/Startup/Actions'
11
/**
12
* The root screen contains the application's navigation.
13
*
14
- * The navigation is handled using https://reactnavigation.org
+ * @see https://reactnavigation.org/docs/en/hello-react-navigation.html#creating-a-stack-navigator
15
*/
16
const AppNav = createStackNavigator(
17
{
18
- SplashScreen: { screen: SplashScreen },
19
- MainScreen: { screen: ExampleScreen },
+ // Create the application routes here (the key is the route name, the value is the target screen)
+ SplashScreen: SplashScreen,
20
+ MainScreen: ExampleScreen,
21
},
22
23
// By default the application will show the splash screen
0 commit comments