I'm getting a NullReferenceException when I tap on the Load More button on my SfListView. Specifically at 0x17 in Syncfusion.Maui.ListView.LoadMoreButton.LoadMoreViewButton_Clicked. Obviously I haven't set something correctly, but what is it? What setting am I missing?
<sfListView:SfListView x:Name="listView"
HeightRequest="{Binding ItemsHeight}"
ItemSize="75" ItemsSource="{Binding Items}" ItemSpacing="1"
LoadMoreCommand="{Binding LoadMoreGroupedItemsCommand}"
LoadMoreCommandParameter="{Binding Source={x:Reference listView}}"
LoadMoreOption="Manual" LoadMorePosition="End"
ItemTapped="ItemsListView_ItemTapped">
None of my code has been called yet, so it's hard to debug.
I'm using version 27.1.51 of the Syncfusion.Maui.ListView nuget package.