From 39ac4976c3e9965cca83840fce1b9b871f276f12 Mon Sep 17 00:00:00 2001 From: Yan Maniez Date: Wed, 10 Apr 2019 01:06:40 +0200 Subject: [PATCH] Animation ? --- AideDeJeu/AideDeJeu/ViewModels/Navigator.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs index cacdc220..cfd8ebe5 100644 --- a/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs +++ b/AideDeJeu/AideDeJeu/ViewModels/Navigator.cs @@ -36,7 +36,7 @@ namespace AideDeJeu.ViewModels public async Task GotoAboutPageAsync() { - await Navigation.PushAsync(new Views.AboutPage()); + await Navigation.PushAsync(new Views.AboutPage(), true); } private Command _LibraryCommand = null; @@ -50,7 +50,7 @@ namespace AideDeJeu.ViewModels public async Task GotoLibraryPageAsync() { - await Navigation.PushAsync(new Views.ItemDetailPage()); + await Navigation.PushAsync(new Views.ItemDetailPage(),true); } private Command _BookmarksCommand = null; @@ -64,7 +64,7 @@ namespace AideDeJeu.ViewModels public async Task GotoBookmarksPageAsync() { - await Navigation.PushAsync(new Views.BookmarksPage()); + await Navigation.PushAsync(new Views.BookmarksPage(), true); } @@ -80,7 +80,7 @@ namespace AideDeJeu.ViewModels public async Task GotoPlayerCharacterEditorPageAsync() { - await Navigation.PushAsync(new Views.PlayerCharacterEditorPage()); + await Navigation.PushAsync(new Views.PlayerCharacterEditorPage(), true); } private Command _DeepSearchCommand = null; @@ -94,7 +94,7 @@ namespace AideDeJeu.ViewModels public async Task GotoDeepSearchPageAsync() { - await Navigation.PushAsync(new Views.DeepSearchPage()); + await Navigation.PushAsync(new Views.DeepSearchPage(), true); } private Command _AddToFavoritesCommand = null; @@ -175,7 +175,7 @@ namespace AideDeJeu.ViewModels if (itemsVM == null) return; - await Navigation.PushAsync(new ItemsPage(itemsVM)); + await Navigation.PushAsync(new ItemsPage(itemsVM), true); } public async Task GotoFilteredItemsPageAsync(ItemsViewModel itemsVM) @@ -183,7 +183,7 @@ namespace AideDeJeu.ViewModels if (itemsVM == null) return; - await Navigation.PushAsync(new FilteredItemsPage(itemsVM)); + await Navigation.PushAsync(new FilteredItemsPage(itemsVM), true); } private ICommand _NavigateToLinkCommand = null;