### Steps to reproduce 1. Declare an ObservableCollection public ObservableCollection<string> Collection {get;set;} = new ObservableCollection<string>(); // Initialize somewhere Collection.Add("1"); Collection.Add("2"); Collection.Add("3"); 2. Bind to a RecyclerView using local:MvxBind="ItemsSource Collection" 3. Call Collection.Move(1, 0); ### Expected behavior Should visually see the second row move up. ### Actual behavior Nothing visually happens ### Configuration **Version:** 4.x
Steps to reproduce
Declare an ObservableCollection
public ObservableCollection Collection {get;set;} = new ObservableCollection();
// Initialize somewhere
Collection.Add("1");
Collection.Add("2");
Collection.Add("3");
Bind to a RecyclerView using local:MvxBind="ItemsSource Collection"
Call Collection.Move(1, 0);
Expected behavior
Should visually see the second row move up.
Actual behavior
Nothing visually happens
Configuration
Version: 4.x