You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now there is no way that i can figure out to support a long press, single tap, and double tap independently of each other.
if singleTap.requiresFailureOf(doubleTap), then when i long press both long press and single tap get triggered. If (singleTap.requiresFailureOf(longPress) then both single and double tap get triggered when double tapping
requiresFailureOf should support more than one recognizer and the above scenario should work better
The text was updated successfully, but these errors were encountered:
i see now that i can chain the requiresFailureOf to get the desired effect. singleTap.requiresFailureOf(doubleTap)
doubleTap.requiresFailureOf(longPress)
but that feels a bit hacky, so I guess treat this as a feature request instead of a bug
Right now there is no way that i can figure out to support a long press, single tap, and double tap independently of each other.
if singleTap.requiresFailureOf(doubleTap), then when i long press both long press and single tap get triggered. If (singleTap.requiresFailureOf(longPress) then both single and double tap get triggered when double tapping
requiresFailureOf should support more than one recognizer and the above scenario should work better
The text was updated successfully, but these errors were encountered: