Keng Warapol

Results 1 comments of Keng Warapol

```typescript const [requestGoBack, setRequestGoBack] = useState(false) const navigation = useNavigation() useEffect(() => { return navigation.addListener('beforeRemove', (e) => { e.preventDefault() setRequestGoBack(true) setTimeout(() => { navigation.dispatch(e.data.action) }, 250) }) }, [navigation]) if...