react-native-gesture-handler
react-native-gesture-handler copied to clipboard
Declarative API exposing platform native touch and gesture system to React Native.
As the the react-navigation library now depends on this library, projects using react-navigation cannot be used on windows (see https://github.com/Microsoft/react-native-windows/issues/2033). Therefore it would be nice, if this library supported the...
**Current Behavior** I'm in the beautiful world of React navigation + React-native-web and when using react-navigation the text on the page can no longer be selected. In [an issue I...
Hello, I'm using react-navigation and tried to make editable drawer with animations like Slack App.  This is implemented by `drawerType="slide"`, `position: 'absolute'` in drawer content style and animating...
It would be great if support was added for Apple Pencil. I imagine basic support could be easily added through just reporting back the [UITouch.TouchType](https://developer.apple.com/documentation/uikit/uitouch/touchtype) of the touch. This would...
I suggest adding `exclusive` prop for `BaseGestureHandler` that should behave as in [`BaseButton#exclusive`](https://kmagiera.github.io/react-native-gesture-handler/docs/component-buttons.html#exclusive-ios-only) This will complete `waitFor` and allow easier configuration of cross handler interactions. To achieve this now AFAIK...
If you wait for the drawer gesture to fail before beginning another gesture (eg: have a MapView wait for drawer) then it is useful to have maxDeltaY, otherwise if you...
### Description For certain gestures, the callbacks that are called, or the order in which they are called, differs between platforms. I listed the difference I've found below. The tables...
### Description There are a bunch of typescript errors in this library's type definitions when using `@types/[email protected]`. ``` node_modules/react-native-gesture-handler/lib/typescript/components/DrawerLayout.d.ts:81:48 - error TS2314: Generic type 'AnimatedInterpolation' requires 1 type argument(s). 81...
## Description This fixes a potential race condition where the component unmounted before the callback passed into `setImmediate` in `updateHandlers` could execute. That would lead to a "No handler for...
[Web] Text inside ScrollView cannot be selected due to the applied "user-select: none" css property
### Description So as the title says, I cannot select any text on web when it's rendered within the rngh scrollview! ### Steps to reproduce 1. Render a scrollview from...