In my .NET MAUI app, I have a user feed that I use a CollectionView
to display. The CollectionView
gets its data from an ObservableCollection
in the corresponding ViewModel
.
Once the user adds a new item, I do an Insert
at index 0
which successfully adds the new item to the CollectionView
but that item doesn't come into view unless I pull the items down in the CollectionView
. As a matter of fact, I see no indication that a new item even exists at the top because the scroll bar remains at the top, giving no hint that there's another item right above the item that was first before the new item was inserted.
How do I make sure the newly added item gets displayed?
Here's the XAML code:
...
<CollectionView
ItemsSource={Binding FeedItems}>
...
</CollectionView>
Here's the ViewModel
code:
public ObservableCollection<FeedItem> FeedItems { get; } = new();
[RelayCommand]
async Task AddItem(FeedItem newItem)
{
FeedItems.Insert(0, newItem);
}
Using MVVM many fear to access the ViewModel from the View. The purpose of MVVM pattern is to separate responisbility. So accessing the ViewModel for the purpose to manipulate the View controls is perfectly fine.
So, that said, if you want to use
ScrollTo
, that should to be done in the View and to get the event you can to access that through the ViewModel. Does that make sense?In your Ctor add these lines of code and the added item in your CollectionView will be visable.
Update
When adding an item to indext 0, it scrolls to it