TinyNavigationHelper
TinyNavigationHelper copied to clipboard
TinyNavigationHelper is a library that is created for you that want to abstract the navigation without installing a bigger MVVM framework.
For performance reasons, we want to disable animation on navigating. Anywhere in "FormsNavigationHelper" that has ".Navigation.PushAsync(page)", we should allow optionally passing a boolean, E.g. to disable navigation it would be...
This fixes(#18) the problem when you open modal page with withNavigation parameter set to true and close the modal page not using the CloseModalAsync method and as result you get...
If you use `_navigationHelper.OpenModalAsync(someview, true)` then if you somehow close the modal page without `_navigationHelper.CloseModalAsync()` method then the `NavigateToAsync` on mainpage won't be possible, because the `private NavigationPage? _modalNavigationPage` in...