Hello,
I cannot get event that more than 2 touches in my Android 6.0.1/iOS 9.3 device with RN.29, which is very annoying
Help needed, any suggestion will be highly appreciated.
PanResponder.create({
onPanResponderMove: (evt, gestureState){
if(evt.nativeEvent.touches.length<2) //move
//if(evt.nativeEvent.changedTouches.length<2) //also move?
else //pinch, this condition is never called.
}
...
})
//Is PanResponder changing the API ?
thanks very much!