File: ISwipeViewController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
namespace Microsoft.Maui.Controls
{
	public interface ISwipeViewController
	{
		bool IsOpen { get; set; }
		void SendSwipeStarted(SwipeStartedEventArgs args);
		void SendSwipeChanging(SwipeChangingEventArgs args);
		void SendSwipeEnded(SwipeEndedEventArgs args);
	}
}