You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.
.
.
import { useBackHandler } from '@react-native-community/hooks'
.
.
.
useBackHandler(() => {
//your function
Alert.alert('Teste')
// Return True will remove BackPress Event, if you set False it will allow it to run your function but will have the BackPress Event anyway.
return true
})
监听安卓返回键,不生效
BackHandler.addEventListener('hardwareBackPress', this._clickBack);
The text was updated successfully, but these errors were encountered: