Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save abegehr/12c5ab506d2439f023c29bce822c642b to your computer and use it in GitHub Desktop.
Save abegehr/12c5ab506d2439f023c29bce822c642b to your computer and use it in GitHub Desktop.
react-navigation createStackNavigator() for horizontal modals
export default createAppContainer(
createStackNavigator(
{
Home: HomeScreen,
Links: {
screen: LinksScreen,
navigationOptions: {
gestureDirection: "horizontal",
cardStyleInterpolator: forHorizontalModal
}
},
Settings: {
screen: SettingsScreen,
navigationOptions: {
gestureDirection: "horizontal-inverted",
cardStyleInterpolator: forHorizontalModal
}
}
},
{
initialRouteName: "Home",
mode: "modal",
headerMode: "none",
defaultNavigationOptions: {
cardStyle: {
backgroundColor: "rgba(0, 0, 0, 0)"
}
}
}
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment