seekshiva / react-native-remote-svg

Adds support for loading svg images in React Native
MIT License
184 stars 71 forks source link

Double tap zoom #8

Closed proutek closed 6 years ago

proutek commented 6 years ago

I'm not able to disable double tap zoom on Android. I have tried scrollEnabled={false} but it's not working. Any suggestions?

seekshiva commented 6 years ago

Can you try wrapping the Image with <View pointerEvents="none"></View>? Let me know if it works

proutek commented 6 years ago

Yep, it works now.

seekshiva commented 6 years ago

Thanks for confirming. I have added pointerEvents="none" to the library so that you don't have to manually wrap a View around your images.

Just published v1.2.0 with this fix.