Consider upgrading to the new Gesture API from react-native-gesture-handler v2 #1750
andreibarabas
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This actually happened for us in practice. As you know, we live on the bleeding edge and are running our app on RN 0.70.1 with Turbo Modules enabled. And I can tell you that the warning above starts to actually break things. For example, the
TapGestureHandler
from theMessageActionListItem
no longer works, meaning you can't press on an menu item anymore.The solution is rather simple, just replace the
TapGestureHandler
with aGestureDetector
and theuseAnimatedGestureHandler
with the newGesture.Tap()
api.See here for a possible patch
Beta Was this translation helpful? Give feedback.
All reactions