MaratSHU

Results 2 comments of MaratSHU

``` const pressable = useRef(true); const onPhotoPress = (id) => { if (pressable.current) { Alert.alert('photo', id); } }; const onScrollStart = () => { if (pressable.current) { pressable.current = false;...

Hi! I catch similar issue on adding autofocus to TextInput on ios (didn't check on android yet). So I prepare two screens and on second screen add ``. On navigating...