Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Last active July 25, 2024 22:38
Show Gist options
  • Save topherPedersen/59dfc2f20fddb4654e99b6020daae7e6 to your computer and use it in GitHub Desktop.
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
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