I have a tab navigator Screen in which there are 2 tabs. The parent Stack has button in the header, which should work differntly w.r.t Two different screens/Tabs.
Now, What I have done is –
navigation.setOptions({
headerRight: () => (
<TouchableOpacity>
<Text>Update</Text>
</TouchableOpacity>
),
});
How I can handle the click of Save
button from both the components under Tabs Navigator?
Note – I am using react-navigation@v6