Reputation: 67
Lets say I'm in the home tab and in the home tab it displays the user's profile picture. If the user clicks on their profile picture, I want them to be navigated to the settings tab. How can I do this in React Native? I am currently using @react-navigation/bottom-tabs for the tabs.
Upvotes: 0
Views: 168
Reputation: 659
You have to use Image
in TouchableOpacity
:
onPress={() => { navigation.navigate('settingTab'); }}
Upvotes: 1