We're using a ListView with grouping and SwipeViews inside the ItemTemplate. When we bind the grouped ItemsSource to the ListView the first time, it works fine. As soon as we manipulate the grouped list (e.g. Grouped.Clear() or Grouped.Add()), the SwipeItems do no longer swipe.
Steps to Reproduce
Create ListView with grouping, bind ItemsSource to a grouped list of items.
Add ItemTemplate with a SwipeView which contains at least one SwipeItem
Bind SwipeItem.Command to an operation which updates the underlying (like Clearing the grouped list / Add new items)
Expected Behavior
SwipeViews always open and close as expected
Actual Behavior
SwipeViews do no longer open after the first manipulation on the grouped list.
Basic Information
Version with issue: XF 5.0.0.1709-pre4
Last known good version: N/A
NuGet Packages: N/A
Affected Devices: Tested on iOS Simulator (iPhone 12 mini)
Description
We're using a ListView with grouping and SwipeViews inside the ItemTemplate. When we bind the grouped ItemsSource to the ListView the first time, it works fine. As soon as we manipulate the grouped list (e.g. Grouped.Clear() or Grouped.Add()), the SwipeItems do no longer swipe.
Steps to Reproduce
Expected Behavior
SwipeViews always open and close as expected
Actual Behavior
SwipeViews do no longer open after the first manipulation on the grouped list.
Basic Information
Environment
Reproduction Link
GroupingListSample.zip
Workaround
Going back to ContextMenus instead of SwipeViews.