I have a control inherited from MR.Gestures.ContentView and subscribing to
Tapped += PinchToZoomContainer_Tapped
in constructor.
Also adding and image and some other control into AbsoluteLayout
which being set to Content
.
Inside of the even handler (on tapping), the Touches
is null
(not even mentioning it doesn't have touches in the list).
Also, having the following (if that might help):
e.Handled == true;
e.NumberOfTaps == 0;
e.Touches == null;
The issue appears only on iOS
Simulator (Android is fine). (Currently cannot check live iOS device unfortunately).
So, don't have any idea why that might happen that Touches is null.