Wednesday, September 1, 2021

The goBack method lets us go back to the previous screen in the navigator

function ProfileScreen({ navigation: { goBack } }) {
  return (
    <View>
      <Button onPress={() => goBack()} title="Go back from ProfileScreen" />
    </View>
  );
}

No comments:

Post a Comment