Plugin.Maui.MVVMExpress.Navigation
0.6.1-preview
See the version list below for details.
dotnet add package Plugin.Maui.MVVMExpress.Navigation --version 0.6.1-preview
NuGet\Install-Package Plugin.Maui.MVVMExpress.Navigation -Version 0.6.1-preview
<PackageReference Include="Plugin.Maui.MVVMExpress.Navigation" Version="0.6.1-preview" />
<PackageVersion Include="Plugin.Maui.MVVMExpress.Navigation" Version="0.6.1-preview" />
<PackageReference Include="Plugin.Maui.MVVMExpress.Navigation" />
paket add Plugin.Maui.MVVMExpress.Navigation --version 0.6.1-preview
#r "nuget: Plugin.Maui.MVVMExpress.Navigation, 0.6.1-preview"
#:package Plugin.Maui.MVVMExpress.Navigation@0.6.1-preview
#addin nuget:?package=Plugin.Maui.MVVMExpress.Navigation&version=0.6.1-preview&prerelease
#tool nuget:?package=Plugin.Maui.MVVMExpress.Navigation&version=0.6.1-preview&prerelease
Plugin.Maui.MVVMExpress.Navigation
Shell and page navigation hosts for MVVMExpress: map a ViewModel type to a Shell route or a Page. Supported: Android + iOS. Mac Catalyst / Windows compile-only.
INavigator, IPageNavigator, GuardedNavigator, and the URI stack live in Core. This package is MauiShellNavigator and MauiPageNavigator. Pages are constructed on IMainThread.
builder.UseMvvmExpress(o => o.UseNavigationPage((nav, _) => nav
.Map<LoginViewModel, LoginPage>("login")
.Map<HomeViewModel, HomePage>("home")).UseDialogs());
await Navigator.ResetAsync<HomeViewModel>(); // replace-root after login
await Navigator.NavigateToAsync<DetailsViewModel, DetailsArgs>(new(42));
Shell is optional (UseShell()). ResetAsync / ReplaceRootAsync replace window.Page with a NavigationPage.
Typed args become a query string via NavigationRouteTable.FormatQuery. INavigator.Stack / CanGoBack / ReplaceAsync / ResetAsync track the URI stack. Register one navigator per IWindowContext with WindowNavigatorRegistry.
Install
dotnet add package Plugin.Maui.MVVMExpress.Navigation --prerelease
Target frameworks: net10.0, net10.0-android (API 21+), net10.0-ios (iOS 15+). Mac Catalyst / Windows compile-only. Requires the host package. Version 0.6.1-preview.
Prefer UseNavigationPage() for login → host → push. Wrap with GuardedNavigator when routes need auth. See the chat-host cookbook.
Related
Prefer Prism.Maui if you need regions. Product docs: repository README. License: MIT.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-android36.0 is compatible. net10.0-browser was computed. net10.0-ios was computed. net10.0-ios26.0 is compatible. net10.0-maccatalyst was computed. net10.0-maccatalyst26.0 is compatible. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress (>= 0.6.1-preview)
-
net10.0-android36.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress (>= 0.6.1-preview)
-
net10.0-ios26.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress (>= 0.6.1-preview)
-
net10.0-maccatalyst26.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress (>= 0.6.1-preview)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.0 | 7 | 9/8/2026 |
| 1.0.2 | 80 | 9/7/2026 |
| 1.0.1 | 91 | 9/6/2026 |
| 1.0.0 | 83 | 9/2/2026 |
| 0.6.1-preview | 82 | 9/1/2026 |
| 0.6.0-preview | 83 | 9/1/2026 |
| 0.5.0-preview | 77 | 9/1/2026 |
| 0.4.0-preview | 78 | 9/1/2026 |
| 0.3.0-preview | 83 | 9/1/2026 |
| 0.1.1-preview | 78 | 8/31/2026 |
| 0.1.0-preview | 82 | 8/31/2026 |
0.6.1-preview: UI-thread-safe navigator, UseNavigationPage + replace-root. ResetAsync now replaces window.Page with a NavigationPage (no longer PopToRoot+Push). SectionHostViewModel, SnapshotCollection, SearchQuery.CommittedText, FormViewModel.Bind.