Stanislav Iliev

Results 25 comments of Stanislav Iliev

I assume this is the property you're describing: ```ts // apple/Handlers/RNNativeViewHandler.mm scrollView.delaysContentTouches = YES; ``` In that case, is it possible to expose control of that flag? In our case...

> Will look into that, but there's a chance that'll break a lot of logic. We've been running with the flag disabled for 1 month now without any issues on...

I have narrowed down this issue to a faulty combination of `border` and `overflow: 'hidden'` because I can also reproduce this with a normal View: ```tsx ```

@TomCorvus We fixed it using this patch ```patch diff --git a/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt b/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt index d51501120abdf073c852ca880cdccddfbe941684..164303f39fe5fe5b8a517baef1ca415a9fb64ede 100644 --- a/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt +++ b/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt @@ -13,6 +13,7 @@ import android.graphics.drawable.LayerDrawable import android.graphics.drawable.PaintDrawable import android.graphics.drawable.RippleDrawable import...

It's a quick fix, there are other [border-related issues](https://github.com/software-mansion/react-native-gesture-handler/issues/3304) and it looks like a [general fix ](https://github.com/software-mansion/react-native-gesture-handler/pull/3634) was started but ultimately abandoned. @j-piasecki Could you share some information about that...