React component to detect touch gestures. It's a react port of hammerjs :)
- Pan
- Pinch
- Press
- Rotate
- Swipe
- Tap
npm i react-gesture-handler hammerjs --save
npm i @types/hammerjs --save-dev
import * as React from "react";
import { Gestures } from "react-gesture-handler";
const MyComponent = () => {
const [eventType, setEventType] = React.useState<string>("");
const handleGesture = (event: HammerInput) => setEventType(event.type);
return (
<Gestures
recognizers={{
Pan: {
events: {
panleft: handleGesture,
panright: handleGesture,
panup: handleGesture,
pandown: handleGesture
}
}
}}
>
<div>
<h1>Gesture Section {eventType && ` - This is ${eventType}`}</h1>
</div>
</Gestures>
);
};
This project is licensed under the MIT License - see the LICENSE.md file for details