React native – change selected tab when navigate to the screen
i am building react native application and i have 2 screens on my app right now. Home: import { StyleSheet, Text, View, Button } from 'react-native'; import {StackScreens} from '../routes/MyStack' import {NativeStackScreenProps} from '@react-navigation/native-stack' type homePropsType = NativeStackScreenProps<StackScreens, 'Home'>; export…