Skip to content

Instantly share code, notes, and snippets.

@pytqqq
Created April 14, 2023 08:37
Show Gist options
  • Save pytqqq/afac72a9daaf640f637231ef3d445e75 to your computer and use it in GitHub Desktop.
Save pytqqq/afac72a9daaf640f637231ef3d445e75 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
color="rgba(127, 103, 190, 1)"
title="Navigate to DetailScreen"
onPress={() => {
navigation.navigate("Detail");
}}
/>
<Button
color="rgba(127, 103, 190, 1)"
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