Skip to content

Instantly share code, notes, and snippets.

@DevGW
Created February 1, 2023 15:58
Show Gist options
  • Save DevGW/4b88d8821a376c49fa852a4fe8886658 to your computer and use it in GitHub Desktop.
Save DevGW/4b88d8821a376c49fa852a4fe8886658 to your computer and use it in GitHub Desktop.
Override header options for specific navigation screen #react
React.useLayoutEffect(() => {
navigation.setOptions({
headerRight: () => (
<IconButton
icon="pencil"
color={'lightgray'}
onPress={() => navigation.replace('Entry', {entry: route.params.entry})}
/>
)
})
}, [navigation])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment