Open
Description
When creating a RX.GestureView
with onPanVertical
I ran into a case, that it was not responding on Android platform.
After adding onTap to find out, that the correct view is responding and that adding an empty onTap
-handler solved this issue on Android. This seems very weird to me.
<RX.GestureView
onPanVertical={ state => this.onResizeClockingTop(state) }
onTap={() => { /* Needed to make onPanVertical work */ }}>
... some content ...
</RX.GestureView>
When removing the empty onTap-handler it stops working.
How does this connect to each other? Can we fix this or at least document this somewhere?
Regards,
Sascha