The buttons are not tappable unless pressed in a specific way (reproducible in emulator).
I think it's a React Native's panResponder issue but is there a workaround?
Edit: When using onPressIn or onPressOut instead of onPress, it works well.
Edit 2: Actually, the real fix seems to be "rejectResponderTermination" property passed to every Touchable element inside ActionButton which eliminates the 3D touch problem.
The buttons are not tappable unless pressed in a specific way (reproducible in emulator). I think it's a React Native's panResponder issue but is there a workaround?
Edit: When using onPressIn or onPressOut instead of onPress, it works well.
Edit 2: Actually, the real fix seems to be "rejectResponderTermination" property passed to every Touchable element inside ActionButton which eliminates the 3D touch problem.