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
Fix simultaneous gesture when it receives composed gestures as arguments (#2252)
## Description
Right now `Simultaneous` gesture transforms received gestures into the
array of non-composed gestures (flattening it if necessary) and makes
every gesture simultaneous with every gesture in the array. It's not a
good approach because `Exclusive` also exists and putting an exclusive
gesture into `Simultaneous` meant that gestures meant to be exclusive
are now also simultaneous, resulting in different behavior on different
platforms.
This PR changes the behavior so it respects groups, meaning exclusive
gestures will not be made simultaneous with each other.
## Test plan
Tested on the example app
Co-authored-by: Michał Bert <63123542+Warus15@users.noreply.github.com>
0 commit comments