revert "fix(core): handle tap and longpress gesture conflict on iOS" (#10021)

Revert "fix(ios): handle tap and longpress gesture conflict (#10004)"

This reverts commit 64755cb348.
This commit is contained in:
Nathan Walker
2022-09-10 20:01:37 -07:00
committed by GitHub
parent 9ccc54b603
commit 9972946551

View File

@@ -33,9 +33,6 @@ class UIGestureRecognizerDelegateImpl extends NSObject implements UIGestureRecog
if (gestureRecognizer instanceof UITapGestureRecognizer && otherGestureRecognizer instanceof UITapGestureRecognizer && otherGestureRecognizer.numberOfTapsRequired === 2) {
return true;
}
if (gestureRecognizer instanceof UITapGestureRecognizer && otherGestureRecognizer instanceof UILongPressGestureRecognizer) {
return true;
}
return false;
}