react-native-gesture-handler icon indicating copy to clipboard operation
react-native-gesture-handler copied to clipboard

Declarative API exposing platform native touch and gesture system to React Native.

Results 260 react-native-gesture-handler issues
Sort by recently updated
recently updated
newest added

### Description RNGH and Reanimated appear to be designed to be used together. However, both have each own `ScrollView` export that are incompatible. Concretely, I want the `onScroll={{ onBeginDrag, onEndDrag...

Platform: Android
Missing repro

### Description I've been scratching my head at this for the last few days so I figured I'd report. Basically, my problem looks like https://github.com/software-mansion/react-native-gesture-handler/issues/1082. I have a horizontal `ScrollView`,...

Platform: Android
Missing repro

### Description As far as I can tell lodash is used [once](https://github.com/software-mansion/react-native-gesture-handler/blob/a9272cf2471bd869a3c81e13fa114ecfea3cc835/src/handlers/createHandler.tsx#L391C13-L391C14) anywhere in the repo and could either be replaced with [lodash.isEqual](https://www.npmjs.com/package/lodash.isequal) or native JS. ### Steps to reproduce...

Platform: Web
Missing repro

## Description This PR changes the ordering of `onBegin` and `onTouchesDown` events on Android. `onBegin` was invoked first, as some gestures required additional setup when they started tracking the first...

## Description This PR allows users to override whether a particular `GestureHandlerRootView` is enabled or not. By default, only the topmost root view would be active, allowing all gestures to...

## Description Closes https://github.com/software-mansion/react-native-gesture-handler/security/dependabot/316 https://github.com/software-mansion/react-native-gesture-handler/security/dependabot/245

## Description While looking into jest-related issues I've noticed that the test examples no longer ran. It seems we were a little behind with dependencies, so I've updated the relevant...

### Description Passing `enable={false}` to a `RectButton` will have no effect when running jest tests. My guess is that since `RectButton` is using `TouchableNativeFeedback` (https://github.com/software-mansion/react-native-gesture-handler/blob/f0868f7ccf678c947ef65519ebf97ae149a10289/src/mocks.ts#L34) that uses `disabled` instead, it...

Missing info
Platform: Android
Missing repro

## Description FYI this is the updated version of a [previous PR for v1.6](https://github.com/software-mansion/react-native-gesture-handler/pull/1725). I noticed that ScaleGestureDetector returned zero and different values for scale and focal point as the...

## Description In cases where users use `LayoutAnimation` to smooth transitions upon swiping an item (e.g. perhaps swipe left deletes this Swipeable from a list), the non-open version of the...