Have you solved this issue? It already exists in the last version:
Syncfusion: 17.4.0.55
Xamarin.Forms: 4.5.0.495
Platform: Android
We us the SfRotator in an DataTemplate!
You can test it with your example, but without the code behind. Remove the following lines from the example, you can't have a x:Name in an DataTemplate. For selecting the right DataTemplate in the rotator you can use a TemplateSelector.
if (width > height)
{
Rotator.ItemTemplate = (DataTemplate)this.Resources["LandscapeTemplate"];
}
else
{
Rotator.ItemTemplate = (DataTemplate)this.Resources["PortraitTemplate"];
}
Regards
Arnd