Hello,
I noticed strange SfRotator content blinking on Android. It seems to appear no on every device, but it happened always on Redmi 7A, MIUI 11.0.4, Android 10 QKQ1.
Please check attached screen recording. Rotator declaration is basic, the only not standard thing is that the page is PopupPage (from Rg.Plugins.Popup). It seems like any unexpected visualelement appears in front of rotator and hide part of it's content. When you start swipe rotator, content appears, but blinking sometimes when swiping, when just left it, only top part is visible.
<xForms:SfRotator VerticalOptions="FillAndExpand" Margin="0,30,0,0"
SelectedDotColor="{DynamicResource RotatorDotSelectedColor}"
UnselectedDotColor="Transparent"
DotsBorderColor="{DynamicResource SecondaryTextColor}"
ItemsSource="{Binding WelcomePages}"
SelectedIndex="{Binding SelectedIndex, Mode=TwoWay}"
EnableLooping="False"
>
<xForms:SfRotator.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<skiaSharpToolkit:SVGImage ResourceId="{Binding Image}"
StringToReplace="{DynamicResource TipUsReplace}" />
<StackLayout Grid.Row="1" VerticalOptions="Center" Spacing="30" Margin="30,0">
<Label Text="{Binding Title}"
TextColor="{DynamicResource PrimaryTextColor}"
FontSize="Large"
HorizontalTextAlignment="Center"
FontAttributes="None"/>
<Label Text="{Binding Subtitle}"
TextColor="{DynamicResource PrimaryTextColor}"
Opacity="0.6" LineHeight="1.4"
FontSize="Small"
HorizontalTextAlignment="Center"/>
</StackLayout>
</Grid>
</DataTemplate>
</xForms:SfRotator.ItemTemplate>
</xForms:SfRotator>
Best regards,
Radosław Kubas