ltyx55mlb / react-native-turntable

Easy-to-use roulette buttons for React Native App
MIT License
11 stars 6 forks source link

Capture onPress when click on item #1

Open adrispo opened 6 years ago

adrispo commented 6 years ago

I try to do something when click on item inside turntable (on numbrers) but when i click on number it turns to the next number and not capture onPress action of touchable, and sometimes have an unexpected behaviour.

By other hand, is possible not turn step by step, I mean, when i slide let turntable free movement (like a scroll) .

Thanks for your work!

imammuhtadi commented 5 years ago

This also happens to me in Android Oreo and up, my solution was to import the library manually and replace this line in Turntable.js

onMoveShouldSetPanResponderCapture: () => true,

into this

onStartShouldSetPanResponder: () => true,

hope it helps :)