Found here how to flip a image vertical
https://xamgirl.com/plug-and-play-animations-in-xamarin-forms/
That works , but when i put it on my phone you don't see the flip en go's to the next page immediately ( or to fast i don't see the flip)
Can i change it so i see the flip til it is done en go then to the next page ? Maybe with a delay of some kind or execute and then .....
<Image x:Name="Firebaseimage" Source="Firebase" WidthRequest="40" HeightRequest="40"> <Image.Behaviors> <behaviors:ViewTappedButtonBehavior Command="{Binding OnLoginCommand}" AnimationType="FlipVertical"/> </Image.Behaviors> </Image>
And the Tap part
void OnTapGestureRecognizerTapped(object sender, EventArgs args) { var tapGestureRecognizer = new TapGestureRecognizer(); tapGestureRecognizer.Tapped += async (s, e) => { // handle the tap await Navigation.PushAsync(new Page1()); }; Firebaseimage.GestureRecognizers.Add(tapGestureRecognizer); }