How can I tap a carousel image and view it in another page. I´m using sfcarousel with itemtemplate and into image I am using a command. below I put the code.
<ResourceDictionary>
<DataTemplate x:Key="itemTemplate">
<Image
x:Name="ImageCarousel"
BindingContext="{Binding Proms}"
Source="{Binding Image}"
Aspect="AspectFit">
<Image.GestureRecognizers>
<TapGestureRecognizer Command="{Binding Path=BindingContext.OpenImage, Source={x:Reference carousel}}"
CommandParameter="{x:Reference ImageCarousel}"/>
</Image.GestureRecognizers>
</Image>
</DataTemplate>
</ResourceDictionary>