In Cross-Platform project I used SfRotator, on Android works flawlessly, unfortunately iOS does not work.
I have defined the Rotator as follows:
Page.xaml (PCL)
<rotator:SfRotator x:Name="rotatorDetailImages" Margin="10" NavigationStripMode="Thumbnail" NavigationDirection="Horizontal">
<rotator:SfRotator.ItemTemplate>
<DataTemplate>
<Grid HorizontalOptions="FillAndExpand" BackgroundColor="Transparent">
<Image Aspect="AspectFill" Source="{Binding CarImagePath, Mode=OneWay}"/>
</Grid>
</DataTemplate>
</rotator:SfRotator.ItemTemplate>
</rotator:SfRotator>
AppDelegate.cs (iOS)
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
new SfRotatorRenderer();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
Thank you for any advice.