Skip to content

Instantly share code, notes, and snippets.

@pavinduLakshan
Created May 14, 2020 09:38
Show Gist options
  • Save pavinduLakshan/37d565279ea4892d86cf56fcafda022a to your computer and use it in GitHub Desktop.
Save pavinduLakshan/37d565279ea4892d86cf56fcafda022a to your computer and use it in GitHub Desktop.
function Profile({ navigation }) {
React.useEffect(() => {
const unsubscribe = navigation.addListener('focus', () => {
// Fetch profile data
});
return unsubscribe;
}, [navigation]);
return <ProfileContent />;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment