Skip to content

Instantly share code, notes, and snippets.

@pytqqq
Created April 12, 2023 09:22
Show Gist options
  • Save pytqqq/864c252393b0e26543c25c657b5019a2 to your computer and use it in GitHub Desktop.
Save pytqqq/864c252393b0e26543c25c657b5019a2 to your computer and use it in GitHub Desktop.
const HomeScreen = () => {
const navigation = useNavigation<MainStackNavigationProp>();
return (
<View style={styles.container}>
<Text style={styles.label}>HomeScreen</Text>
<Button
title="Navigate to DetailScreen"
onPress={() => {
navigation.navigate("Detail");
}}
/>
<Button
title="Navigate to MiniApp"
onPress={() => {
navigation.navigate("MiniApp");
}}
/>
</View>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment