Some Samsung Devices Freeze whe use SfPullToRefresh with SfListView

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>


1 Reply

KK Karthikraja Kalaimani Syncfusion Team April 29, 2020 01:21 PM UTC

Hi Douglas,

We have checked the reported issue with SfPullToRefresh and SfListView v18.1.0.46 and  Xamarin forms version 4.5.0.657 in Samsung S8. We could not able to reproduce the issue and it is working fine as expected. We have attached the tested sample and video for your reference.

Sample link : https://www.syncfusion.com/downloads/support/directtrac/general/ze/PullToRefresh_Demo-1138253825.zip


Video link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/Video_Reference276285424.zip


Please check the sample and let us know if you still facing the same issue? If not, please modify the sample based on your scenario and revert us back.

Regards,
Karthik Raja 


Loader.
Up arrow icon