The freeze is happening on Samsung S20 and S9 devices, I tried to emulate with Samsung Remote Test Lab but the error only happen in real devices.
iOS is working good.
When I removed SfPullToRefresh from xaml, the system back to work.
Lib Version
Syncfusion.Xamarin.SfPullToRefresh v 18.1.0.46
Syncfusion.Xamarin;SfListView v 18.1.0.46
Xamarin.Forms v4.5.0.657
xmlns:pullToRefresh="clr-namespace:Syncfusion.SfPullToRefresh.XForms;assembly=Syncfusion.SfPullToRefresh.XForms"
xmlns:syncfusion="clr-namespace:Syncfusion.ListView.XForms;assembly=Syncfusion.SfListView.XForms"
Piece Code:
<pullToRefresh:SfPullToRefresh x:Name="pullToRefresh"
IsRefreshing="{Binding IsBusy}"
ProgressBackgroundColor="Transparent"
ProgressStrokeColor ="Transparent"
TransitionMode="Push"
PullingThreshold="100"
RefreshContentHeight="30"
RefreshContentThreshold="30"
RefreshContentWidth="30"
RefreshCommand="{Binding LoadSummaryStocksCommand}">
<pullToRefresh:SfPullToRefresh.PullableContent>
<syncfusion:SfListView x:Name="listView" SelectionMode="Single" IsVisible="{Binding HasItems}" ItemsSource="{Binding CurrentSummaryStocks}" SelectionBackgroundColor="{DynamicResource RedColor}" ItemTapped="listView_ItemTapped" LoadMoreOption="AutoOnScroll" AutoFitMode="DynamicHeight" >
<syncfusion:SfListView.ItemTemplate>
<DataTemplate>
<StackLayout >
<StackLayout Orientation="Horizontal" Margin="8,8,8,0">
...
</StackLayout>
</StackLayout>
</DataTemplate>
</syncfusion:SfListView.ItemTemplate>
</syncfusion:SfListView>
</pullToRefresh:SfPullToRefresh.PullableContent>
</pullToRefresh:SfPullToRefresh>