Completed
Last Updated: 20 Mar 2020 13:22 by ADMIN
Release 2020.1.313 (R1 2020 minor release)
Alex
Created on: 05 Jun 2019 10:50
Category: ListView
Type: Bug Report
1
ListView: [iOS]Swiping several items at once causes them to get stuck and the swipe Content is lost
When you try to swipe several items at once by using more than 1 finger - the items are stuck and the space where the ItemSwipe content should be present is left blank. The issue can also be observed if you swipe items very fast. 
1 comment
Stefan
Posted on: 05 Jun 2019 11:05

In the case where you are swiping items fast, lowering the animation time of the swiping might negate the issue. You can apply this through a custom renderer in iOS:

class CustomListViewRenderer : Telerik.XamarinForms.DataControlsRenderer.iOS.ListViewRenderer
{
    protected override void OnElementChanged(ElementChangedEventArgs<RadListView> e)
    {
        base.OnElementChanged(e);
        this.Control.CellSwipeAnimationDuration =(System.nfloat)0.1;
    }
}