maui-linux/Xamarin.Forms.Core/ISwipeGestureController.cs

8 строки
201 B
C#

namespace Xamarin.Forms
{
public interface ISwipeGestureController
{
void SendSwipe(Element sender, double totalX, double totalY);
bool DetectSwipe(View sender, SwipeDirection direction);
}
}