Pantalla de pestaña Renderizar cuando se llama a la función Goback de otra pantalla

function Profile({ navigation }) {
  React.useEffect(() => {
    const unsubscribe = navigation.addListener('focus', () => {
      // do something
    });

    return unsubscribe;
  }, [navigation]);

  return <ProfileContent />;
}
Lucas Bueno