Hello,
Welcome to our Microsoft Q&A platform!
CollectionView load more when scrolling up
Try using RefreshView
to wrap the CollectionView
. RefreshView
provides pull to refresh functionality for scrollable content.
<RefreshView Command="{Binding RefreshItemsCommand}" IsRefreshing="{Binding IsRefreshing}">
<CollectionView ...>
...
</CollectionView>
</RefreshView>
Tutorial: https://learn.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/refreshview
Best Regards,
Jarvan Zhang
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.