This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const transitioner = (): TransitionConfig => { | |
return { | |
transitionSpec: { | |
duration: 400 | |
}, | |
screenInterpolator: (transitionProps: NavigationTransitionProps) => { | |
const { position, scene } = transitionProps; | |
const index = scene.index; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const stack = createStackNavigator({ | |
Home, | |
Settings, | |
Profile | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface Props { | |
navigation: NavigationScreenProp<any, any>; | |
} | |
class Home extends React.Component<Props> { | |
render() { | |
return ( | |
<View style={{ flex: 1, justifyContent: "space-around", alignItems: "center" }}> | |
<Text style={{ fontSize: 48, fontWeight: "bold" }}>Home Screen</Text> | |
<Button title="Profile" onPress={() => this.props.navigation.navigate("Profile")} /> |
NewerOlder