Answers for "react native navigation navigate"

0

react native navigation navigate

function HomeScreen({ navigation: { navigate } }) {
  return (
    <View>
      <Text>This is the home screen of the app</Text>
      <Button
        onPress={() =>
          navigate('Profile', { names: ['Brent', 'Satya', 'Michaƛ'] })
        }
        title="Go to Brent's profile"
      />
    </View>
  );
}
Posted by: Guest on April-17-2022

Code answers related to "react native navigation navigate"

Code answers related to "Javascript"

Browse Popular Code Answers by Language