This sample shows you how to add swipe actions on any view on iOS and Android using Xamarin Forms.
I needed to add this feature to one of my app Podcasts Tracker and I didn't manage to find a quick and easy set-up so I coded it myself :)
](https://www.youtube.com/watch?v=/xEOwv6UjiOI)
Better quality on Youtube : https://youtu.be/xEOwv6UjiOI
You need to register a specific renderer on Android to let it works nicely on Android.
[assembly: ExportRenderer(typeof(SwipeWrapper), typeof(SwipeWrapperRenderer))]
In the demo project, this is done in the AssemblyInfo.cs file of the Android project.
Nothing special has to be done but be aware that this specific ios configuration will be enabled :
PanGestureRecognizerShouldRecognizeSimultaneously
.