React native clear Stack Navigator stack
in V5, you can use this.props.navigation.reset({ index: 0, routes: [{name: ‘Home’}], }); Using hooks import {useNavigation} from ‘@react-navigation/native’; const navigation = useNavigation(); navigation.reset({ index: 0, routes: [{name: ‘Events’}], });