codemill.vmfirstnav icon indicating copy to clipboard operation
codemill.vmfirstnav copied to clipboard

Xamarin.Forms ViewModel First Navigation Library

Results 11 codemill.vmfirstnav issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

enhancement
research

Probably can use nUnit - but I would be open for xUnit as well.

help wanted

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...

bug

@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

research

Need documentation for the following: - [ ] How to use with IoC - [ ] Using in real life scenarios

documentation

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...

enhancement

Need to have the library work when views and view models are defined in different assemblies.

enhancement