diff options
-rw-r--r-- | Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs b/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs index efb941fa..5d6b2126 100644 --- a/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs +++ b/Xamarin.Forms.Platform.WinRT/NavigationPageRenderer.cs @@ -427,7 +427,9 @@ namespace Xamarin.Forms.Platform.WinRT _currentPage.PropertyChanged -= OnCurrentPagePropertyChanged; } - _previousPage = _currentPage; + if (!isPopping) + _previousPage = _currentPage; + _currentPage = page; if (page == null) |