i am stuck in big problem that is i wants onPress event when i clicked on tab. my code is here:-
static navigationOptions = ({navigation, screenProps}) => {
This is working for me,
static navigationOptions = ({ navigation }) => { return { tabBarOnPress: ({previousScene, scene, jumpToIndex}) => { const { route, index, focused} = scene; if(focused){ navigation.state.params.scrollToTop() } jumpToIndex(0) } } };