I have Production apps which uses Rotator inside the CardView which is slow to rotate images inside android where as it is decent on iOS. Please improve more touch improvements on android real phones.
Android App : https://shorturl.at/ehDV4
iOS App: https://shorturl.at/gqsE1
Tested on Oppo V15 Pro , Poco X3 , Samsung S7 edge , Galaxy Fold
<cards:SfCardView>
<Grid>
<rotator:SfRotator NavigationDirection="Vertical" NavigationStripPosition="Right" SelectedDotColor="{StaticResource IconOrangeColor}" ItemsSource="{Binding product_Images}" x:Name="rotator">
<rotator:SfRotator.ItemTemplate>
<DataTemplate>
<Grid>
<Grid>
<busyindicator:SfBusyIndicator x:Name="listbusyindicator"
AnimationType="Cupertino" IsBusy="{Binding Path=IsLoading, Source={x:Reference Name = Myimage}}" IsVisible="{Binding Path=IsLoading, Source={x:Reference Name=Myimage}}"
ViewBoxWidth = "50" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand"
ViewBoxHeight="50"
TextColor="{StaticResource IconOrangeColor}" />
<Image x:Name="Myimage" Source="{Binding imageURl}" HorizontalOptions="Fill" VerticalOptions="Fill" Aspect="Fill">
</Image>
</Grid>
</Grid>
</DataTemplate>
</rotator:SfRotator.ItemTemplate>
</rotator:SfRotator>