Hi,
as an addition, i've managed click in this way:
<rotator:SfRotator.ItemTemplate>
<DataTemplate>
<ffimageloading:CachedImage
Aspect="AspectFill"
DownsampleToViewSize="true"
Source="{Binding Image}"
FadeAnimationEnabled="True"
LoadingPlaceholder="Loading.gif">
<ffimageloading:CachedImage.GestureRecognizers>
<TapGestureRecognizer
Command="{Binding Path=BindingContext.TapCommand, Source={x:Reference MainPage}}"
CommandParameter="{Binding .}" />
</ffimageloading:CachedImage.GestureRecognizers>
</ffimageloading:CachedImage>
</DataTemplate>
</rotator:SfRotator.ItemTemplate>
</rotator:SfRotator>
So, i've used the TapGestureRecognizer with Command Binding on the image inside data template. The only problem is that now, when i try to swipe the image, it executes the tap command so i cannot swipe the rotator anymore.. help me please!