I want to preface this by saying I\'m completely new to mobile development, Xamarin, C#, .Net.
I\'m working on creating a mobile app using Xamarain Forms and have ru
FYI
SwipeView is available in Xamarin.Forms 4.4.
The SwipeView class also defines four events:
SwipeStarted is fired when a swipe starts. The SwipeStartedEventArgs object that accompanies this event has a SwipeDirection property, of type SwipeDirection.
SwipeChanging is fired as the swipe moves. The SwipeChangingEventArgs object that accompanies this event has a SwipeDirection property, of type SwipeDirection, and an Offset property of type double.
SwipeEnded is fired when a swipe ends. The SwipeEndedEventArgs object that accompanies this event has a SwipeDirection property, of type SwipeDirection.
CloseRequested is fired when the swipe items are closed. In addition, SwipeView defines a Close method, which closes the swipe items.
For more information about some new Xamarin Forms features visit this link.