ReScript bindings for react-native-gesture-handler.
rescript-gesture-handler x.y.* means it's compatible with react-native-gesture-handler x.y.*
NOTE: v2 isn't backwards compatible with v1, even though original react-native-gesture-handler is. Mainly because I believe they will be dropping support for it in the near future (they already warn you if you are using v1 API).
Work in progress.
NOTE: There won't be any progress with v1 until v2 is finished.
-
FlingGestureHandler -
PanGestureHandler - ...
-
Fling -
Pan -
Pinch -
Force - ...
npm install [email protected]
# or
yarn add [email protected]
npm install rescript-gesture-handler
# or
yarn add rescript-gesture-handler
open Directions
let flingGesture =
Gesture.makeFling()
->Fling.direction(Direction.make(directions.left))
->Fling.onEnd((_event, _success) => ResAnimated.runOnJS(__someFunction__)(.))