1 write to _tapGesture
Microsoft.Maui.Controls (1)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (1)
185
_tapGesture
= new UITapGestureRecognizer(() =>
6 references to _tapGesture
Microsoft.Maui.Controls (6)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (6)
191
_tapGesture
.ShouldReceiveTouch = shouldReceive;
193
_clickOffView.AddGestureRecognizer(
_tapGesture
);
255
if (
_tapGesture
!= null)
257
if (_clickOffView != null && _clickOffView.GestureRecognizers.Contains(
_tapGesture
))
259
_clickOffView.GestureRecognizers.Remove(
_tapGesture
);
262
_tapGesture
.Dispose();