When zoomed in panning up and down triggers onSwipeToClose too quickly, because of this it is impossible to pan up and down. And when returning early in onSwipeToClose I can keep panning to what seems infinity in any direction.
Anyone else experiencing the same problem?
This is the code:
<View>
<Gallery
data={[img]}
onSwipeToClose={() => router.back()}
keyExtractor={x => x.thumb}
renderItem={(item) => (
<Image
style={{
objectFit: 'contain',
flex: 1
}}
source={{
uri: item.item.fullsize
}}
/>
)}
/>
</View>
iOS 18.2
Expo 52
RN Gesture handler 2.20.2
Reanimate 3.16.1
When zoomed in panning up and down triggers onSwipeToClose too quickly, because of this it is impossible to pan up and down. And when returning early in onSwipeToClose I can keep panning to what seems infinity in any direction.
Anyone else experiencing the same problem?
This is the code:
iOS 18.2
Expo 52
RN Gesture handler 2.20.2
Reanimate 3.16.1