Skip to content

Instantly share code, notes, and snippets.

@Taohid0
Created January 10, 2019 18:41
Show Gist options
  • Save Taohid0/fdd408a476d7c521ba4d97049df14ae6 to your computer and use it in GitHub Desktop.
Save Taohid0/fdd408a476d7c521ba4d97049df14ae6 to your computer and use it in GitHub Desktop.
stack navigator with initial component
const AppNavigator = createStackNavigator(
Home: {
screen: HomeScreen
},
Profile : {
screen: ProfileScreen
},
Details : {
screen : DetailsScreen
},
{
initialRouteName: "Home"
}
);
@gregv21v
Copy link

gregv21v commented Apr 6, 2019

You forgot the brackets around the object passed to the createStackNavigator function.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment