codemill.vmfirstnav
codemill.vmfirstnav copied to clipboard
Xamarin.Forms ViewModel First Navigation Library
I noticed that the existing `PushModalAsync()` method wraps everything in a `NavigationPage` which may not be desired behavior in some cases. So I added this method to the `NavigationService.cs` file...
Here is how we want to get the top view controller in Xamarin iOS native layer, vc = UIApplication.SharedApplication.KeyWindow.RootViewController; while (vc.PresentedViewController != null) { vc = vc.PresentedViewController; } if (vc...
First of all, thanks for this, it definitely helped me get my head around where I needed to go. Normally I'd make the changes and issue a PR, but in...
I have an app where I pushed some modal pages, then I tried to ise PopToRootAsync but nothing happens. Is there a limitation when using modal pages? I might change...
@chriszirkel is seeing performance improvements instantiating objects via compiled lambda expressions. Try using those & see what happens with this library. Some more info: - https://gist.github.com/chriszirkel/cf25c675e6c091dc159d662dc46b5538 - https://stackoverflow.com/questions/20730329/create-compiled-expession-lambda-for-types-known-only-at-runtime - https://stackoverflow.com/questions/6582259/fast-creation-of-objects-instead-of-activator-createinstancetype
Need documentation for the following: - [ ] How to use with IoC - [ ] Using in real life scenarios
Is it possible to make navigation from a masterdetail list, to another than the first/default tab page. In the demo the navigation is to the default first tab page, but...
Need to have the library work when views and view models are defined in different assemblies.