1 instantiation of MauiSwipeView
Microsoft.Maui (1)
Handlers\SwipeView\SwipeViewHandler.iOS.cs (1)
7 protected override MauiSwipeView CreatePlatformView() => new() { CrossPlatformLayout = VirtualView };
19 references to MauiSwipeView
Microsoft.Maui (18)
Handlers\SwipeItemMenuItem\SwipeItemMenuItemHandler.iOS.cs (2)
89 var swipeView = handler.PlatformView.GetParentOfType<MauiSwipeView>();
Handlers\SwipeItemView\SwipeItemViewHandler.iOS.cs (2)
46 var swipeView = handler.PlatformView.GetParentOfType<MauiSwipeView>();
Handlers\SwipeView\ISwipeViewHandler.cs (2)
2using PlatformView = Microsoft.Maui.Platform.MauiSwipeView; 18 new PlatformView PlatformView { get; }
Handlers\SwipeView\SwipeViewHandler.cs (2)
2using PlatformView = Microsoft.Maui.Platform.MauiSwipeView; 56 PlatformView ISwipeViewHandler.PlatformView => PlatformView;
Handlers\SwipeView\SwipeViewHandler.iOS.cs (2)
5 public partial class SwipeViewHandler : ViewHandler<ISwipeView, MauiSwipeView> 7 protected override MauiSwipeView CreatePlatformView() => new() { CrossPlatformLayout = VirtualView };
Platform\iOS\MauiSwipeView.cs (8)
177 readonly WeakReference<MauiSwipeView> _view; 179 public SwipeRecognizerProxy(MauiSwipeView view) => _view = new(view); 183 return _view.TryGetTarget(out var view) && view._swipeOffset != 0; 188 if (!_view.TryGetTarget(out var view)) 214 if (!_view.TryGetTarget(out var view)) 771 MauiSwipeView.ExecuteSwipeItem(swipeItem); 989 return MauiSwipeView.IsValidSwipeItems(swipeItems); 1034 MauiSwipeView.ExecuteSwipeItem(swipeItem);
Microsoft.Maui.Controls (1)
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (1)
783 if (view.Superview is MauiSwipeView)