Jakub Piasecki

Results 99 comments of Jakub Piasecki

Thanks for the information! In that case, I'll close the issue.

Hi! I tried to reproduce it on a simple view but it seems to be working fine in that case. Would you mind sharing the repository with the application you...

I found the problem: https://github.com/software-mansion/react-native-gesture-handler/blob/3ff7674fe67041d5ca6e80caf768fb62908c11cc/android/lib/src/main/java/com/swmansion/gesturehandler/GestureHandlerOrchestrator.kt#L248-L254 Only the first point will have correct position, while others will still be scaled with respect to the upper-left corner of the view. I'll try...

@wood1986 As a workaround for now you can wrap the transformed `Animated.View` with a not transformed one, i.e.: ```jsx ... ``` This way the coordinates will be consistent between tap...

Yeah, unfortunately this is bigger than it looked like 😞. Fixing this properly would mean that all gestures would be calculated in the transformed coordinate space of the view, this...

Gesture Handler on iOS uses [UIGestureRecognizers](https://developer.apple.com/documentation/uikit/uigesturerecognizer?language=objc) under the hood, they allow us to calculate the location with respect to any view thanks to [`locationInView`](https://developer.apple.com/documentation/uikit/uigesturerecognizer/1624219-locationinview?language=objc) method.

It's hard to say right now, I'll look more into this and come back to you. Meanwhile, if you want to try one more thing, you could use the additional...

Unfortunately not, I've also tried it (and got the same result) but I haven't investigated it yet.

@wood1986 Could you check if https://github.com/software-mansion/react-native-gesture-handler/pull/2156 solves the problem for you? Just keep in mind that it's not production-ready and I haven't tested it that much, so it may be...

The flickering was caused because the scale factor was being calculated in the coordinate space of the view being scaled. Because of that, when the pointers moved the scale of...