An API for handling complex gestures. From the project's README:
This library provides an API that exposes mobile platform specific native capabilities of touch & gesture handling and recognition. It allows for defining complex gesture handling and recognition logic that runs 100% in native thread and is therefore deterministic.
Platform Compatibility
Android Device | Android Emulator | iOS Device | iOS Simulator | Web |
---|
✅ | ✅ | ✅ | ✅ | ✅ |
Importing gesture handlers:
import { TapGestureHandler, RotationGestureHandler } from 'react-native-gesture-handler';
class ComponentName extends Component {
render () {
return (
<TapGestureHandler>
<RotationGestureHandler>
...
</RotationGestureHandler>
</TapGestureHandler>
);
}
}