Open omghb opened 1 year ago
We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.
I have same problem! the drag events dont trigger the CollectionChanged notification - so nothing gets updated in the view after ReOrder
Drag & Drop reorder is not working anymore to update views & that feature breaks entire application. is there a workaround??
Does anyone know of a workaround for this issue or what is causing it? & Is this only happening in .Net 7? Been trying to solve this problem for a while now. On Android Stepping through ReorderableItemsViewAdapter.cs it seems INotifyCollectionChanged is not implemented? Am I missing something??
@mjsb212 stumbled upon this as I first thought this wasn't working too. But both platforms support this natively so I was confused as to why this would not work.
As it turns out, the behaviour is slightly different on iOS/Android vs windows. You actually have to kind of tap and hold the item for a little bit before it becomes 'draggable'. I did get this working on both iOS and Android in the .NET 8 MAUI version.
Description
The reorder feature of the CollectionView does not work on Android and iOS. But it works on Windows. See screen recording:
Steps to Reproduce
MainPage.xaml
with:MainPage.xaml.cs
with:namespace MauiApp1;
public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); collectionView.ItemsSource = new ObservableCollection(new[] { "Bill", "Steve", "John" });
}
}