Vigilante
Vigilante

Reputation: 67

React Native - How to change tabs from when you are in a Stack Screen from a different tab?

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

Answers (1)

darshilsakhiya
darshilsakhiya

Reputation: 659

You have to use Image in TouchableOpacity :

onPress={() => { navigation.navigate('settingTab'); }} 

Upvotes: 1

Related Questions