Last active
July 25, 2024 22:38
-
-
Save topherPedersen/59dfc2f20fddb4654e99b6020daae7e6 to your computer and use it in GitHub Desktop.
Dude Where's My Screen: How to Know What Screen You Are On in a React Native Navigation App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Navigation.events().registerComponentDidAppearListener(async ({ componentName, componentType }) => { | |
if (componentType === 'Component') { | |
alert(`screen: ${componentName}`); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment