Answers for "react navigation addListener"

0

react navigation addListener

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

    return unsubscribe;
  }, [navigation]);

  return <ProfileContent />;
}
Posted by: Guest on October-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language