openspacelabs / react-native-zoomable-view

A view component for react-native with pinch to zoom, tap to move and double tap to zoom capability.
MIT License
189 stars 57 forks source link

doubleTap prevents single tap #63

Closed ibovegar closed 1 year ago

ibovegar commented 1 year ago

It would be nice to be able to wrap react-native-zoomable-view inside a pressable, e.g. hide header on tap, zoom on double tap.

This is unfortunately not possible today because the onPress callback is never called when react-native-zoomable-view is a child of pressable. I guess it catches the press and prevents it from bubbling.

ibovegar commented 1 year ago

Nevermind.

onSingleTap does the job =)