Forms 2.3.4.270 / Xamarin iOS 11.0 / Xamarin.Android 7.4.5.1
RadSlideView is veeery slow when recycling views.
Instead of shifting views and their bounding context left or right, all 3 views binding context are nullify and then reassigned.
Is should be like this:
ViewA ViewB ViewC
ViewModelA ViewModelB ViewModelC
*
// <== swipe this way
ViewC ViewA ViewB
ViewModelD ViewModelA ViewModelB
*
Then only one view's binding would change
Each time I added an element in the observable collection I had a delay of nearly 1 second...
It's really too bad since the implementation is otherwise quite nice and strong...