Hi, we are having some problems with SFRotator, after screen is loaded if we swipe twice the control desappears for some seconds, can you help us?, this is our code
<StackLayout>
<syncfusion:SfRotator x:Name="rotator"
Margin="20"
ItemsSource="{Binding ImageCollection}"
NavigationDirection="Horizontal"
HeightRequest="340"
EnableAutoPlay="True"
EnableLooping="True"
NavigationDelay="3000"
EnableSwiping="True"
DotPlacement="OutSide"
SelectedDotColor="#DE5713">
<syncfusion:SfRotator.ItemTemplate>
<DataTemplate>
<Frame CornerRadius="5"
BackgroundColor="{Binding ColorFondo}"
HasShadow="False"
IsClippedToBounds="True"
Padding="0">
<Grid BackgroundColor="Transparent"
RowDefinitions="Auto,*">
<Grid Grid.Row="0"
Grid.RowSpan="2"
HeightRequest="340"
WidthRequest="340"
HorizontalOptions="{Binding Horizontal}"
VerticalOptions="{Binding Vertical}">
<ffimageloadingsvg:SvgCachedImage Aspect="AspectFill" Source="{Binding ImagenFondo}" />
</Grid>
<Grid Grid.Row="0"
ColumnDefinitions="30,*"
Margin="20,15,0,15"
VerticalOptions="Start"
HeightRequest="35">
<Grid HeightRequest="30"
WidthRequest="30">
<ffimageloadingsvg:SvgCachedImage Source="{Binding Image}"/>
</Grid>
<Label Grid.Column="1"
HorizontalTextAlignment="Start"
VerticalTextAlignment="Center"
FontFamily="CooperHewitt-Bold"
FontSize="16"
TextColor="White"
Text="{Binding Titulo}">
</Label>
</Grid>
<Grid Grid.Row="1"
RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto"
VerticalOptions="Start"
Margin="20,0,20,0">
<Label Grid.Row="0"
FontFamily="CooperHewitt-Bold"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
Text="{Binding TituloPrimerElemento}">
</Label>
<Label Grid.Row="1"
FontFamily="CooperHewitt-Regular"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
TextType="Html"
Text="{Binding TextoPrimerElemento}">
</Label>
<Label Grid.Row="2"
FontFamily="CooperHewitt-Bold"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
Text="{Binding TituloSegundoElemento}">
</Label>
<Label Grid.Row="3"
FontFamily="CooperHewitt-Regular"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
Text="{Binding TextoSegundoElemento}">
</Label>
<Label Grid.Row="4"
FontFamily="CooperHewitt-Bold"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
Text="{Binding TituloTercerElemento}">
</Label>
<Label Grid.Row="5"
FontFamily="CooperHewitt-Regular"
TextColor="White"
FontSize="14"
HorizontalOptions="Start"
Text="{Binding TextoTercerElemento}">
</Label>
</Grid>
</Grid>
</Frame>
</DataTemplate>
</syncfusion:SfRotator.ItemTemplate>
</syncfusion:SfRotator>
</StackLayout>
We really appreciate your help