1.1.1 ⢠Published 6 months ago
react-native-gesture-lib v1.1.1
React Native Gesture Library
A lightweight custom gesture library for React Native, supporting swipes, long presses, and multi-touch.
š¦ Installation
npm install react-native-gesture-lib
š Dependencies Ensure you have installed:
npm install react-native-gesture-handler react-native-reanimated
š Usage
import GestureHandler from "react-native-gesture-lib";
<GestureHandler
onSwipeLeft={() => console.log("Swiped Left")}
onSwipeRight={() => console.log("Swiped Right")}
onLongPress={() => console.log("Long Pressed")}
>
<YourComponent />
</GestureHandler>