How to simulate two-finger touches in the Device Hub?

My app relies on two-finger tap for some interactions.

This was easy in the old simulator by holding down option while clicking. Is there an equivalent interaction in Device Hub? (Option-click no longer seems to work.)

If not, will this be added back in a future beta?

There is no way currently to simulate a two-finger touch in Device Hub. This is a known issue with Beta 1 that we are investigating. Please file a feedback report if you want to see this get added back.

Also not working in Beta 2.

To me this seems to be a very essential feature for the simulator to be usable.

Since Xcode 27's Device Hub currently doesn't support sending a two-finger touch to a simulator, but does forward Mac trackpad pinch and rotate gestures to the iOS app as UIEvent.EventType.transform events, a possible workaround, in simulator builds only, is to add a UIPinchGestureRecognizer and UIRotationGestureRecognizer, which receive those events, and use their output to emulate the missing multitouch gestures.

How to simulate two-finger touches in the Device Hub?
 
 
Q