Jakub Piasecki

Results 99 comments of Jakub Piasecki

Also, the same thing happens on iOS: https://user-images.githubusercontent.com/21055725/183613590-10a9c702-6b14-453f-91a1-08353452e259.mov Since, we're not using any custom logic for scaling and transforming events there, this suggests that something may be wrong in your...

This should do the trick: ```jsx import React from 'react'; import { StyleSheet, SafeAreaView, View, Button } from 'react-native'; import { Gesture, GestureDetector, GestureHandlerRootView, } from 'react-native-gesture-handler'; import Animated, {...

@bandhavya Hi, support for Reanimated 1 has been dropped in version 3.0.0 (you can read more about it [here](https://blog.swmansion.com/announcing-reanimated-3-16167428c5f7?source=collection_home---6------0-----------------------)). You probably want to use this commit https://github.com/software-mansion/react-native-reanimated/commit/7c88caf4dab48b44f6080033f04bd045263296e4, from `Reanimated2` branch...

@hirbod It should be possible already, because the [`hitSlop` property is transformed when it's not an object](https://github.com/software-mansion/react-native-gesture-handler/blob/b9904f69d225b9a40607795ff4c3fb1575f009b9/src/handlers/gestureHandlerCommon.ts#L156-L158). I tried it on a simple touchable and it worked fine, although the...

Hi! I tried the snippet from the post on Expo 44, but it seems to be working fine for me. If you are still experiencing this problem could you prepare...

I've done some testing and I've been able to reproduce it only with `expo-updates` installed, without it the app doesn't crash. (It also seems to be working with `expo-updates` installed...

Fixed in https://github.com/facebook/react-native/pull/34927.

Hi! This seems to be more of an issue with Expo Go rather than Gesture Handler or Reanimated, as it works correctly when I ejected the project.

Could you prepare a reproduction for the issue? I tried the following code on Android 12 and Android 9 but it works correctly for me: ```jsx import React from 'react';...

You can change the version of Kotlin Gesture Handler is using by setting `ext.kotlinVersion` in your project-level `build.gradle`. In your case, setting it to `1.6.20` should solve the problem. As...