Plugin.Maui.MVVMExpress
0.6.0-preview
See the version list below for details.
dotnet add package Plugin.Maui.MVVMExpress --version 0.6.0-preview
NuGet\Install-Package Plugin.Maui.MVVMExpress -Version 0.6.0-preview
<PackageReference Include="Plugin.Maui.MVVMExpress" Version="0.6.0-preview" />
<PackageVersion Include="Plugin.Maui.MVVMExpress" Version="0.6.0-preview" />
<PackageReference Include="Plugin.Maui.MVVMExpress" />
paket add Plugin.Maui.MVVMExpress --version 0.6.0-preview
#r "nuget: Plugin.Maui.MVVMExpress, 0.6.0-preview"
#:package Plugin.Maui.MVVMExpress@0.6.0-preview
#addin nuget:?package=Plugin.Maui.MVVMExpress&version=0.6.0-preview&prerelease
#tool nuget:?package=Plugin.Maui.MVVMExpress&version=0.6.0-preview&prerelease
Plugin.Maui.MVVMExpress
MAUI host for MVVMExpress. Supported: Android + iOS. Mac Catalyst / Windows compile-only. DI, main-thread marshal, and page lifecycle.
Depends on Plugin.Maui.MVVMExpress.Core.
builder
.UseMauiApp<App>()
.UseMvvmExpress(o => o.UseShell().UseDialogs());
UseMvvmExpress calls AddMvvmExpress(), replaces IMainThread with MauiMainThread, and marshals command/property notifications. UseShell / UseDialogs are in the Navigation and Dialogs packages.
Install
dotnet add package Plugin.Maui.MVVMExpress.Core --prerelease
dotnet add package Plugin.Maui.MVVMExpress --prerelease
Target frameworks: net10.0, net10.0-android (API 21+), net10.0-ios (iOS 15+). Mac Catalyst / Windows compile-only. Version 0.6.0-preview.
What this package is
UseMvvmExpressonMauiAppBuilderMauiMainThread(IMainThread)ViewModelLifecycleBehaviorfor page appear / disappear
It is not a navigator or dialog implementation. Add Navigation and Dialogs when you need Shell/page routes, toasts, or DisplayAlert. MauiWindowContext and MauiVisualTree resolve the current window/page.
Shared / test code can stay on Core + AddMvvmExpress() without this package.
Related
Product docs: repository README. License: MIT. Niladri Padhy / MauiEssentials.
| 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.Core (>= 0.6.0-preview)
-
net10.0-android36.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress.Core (>= 0.6.0-preview)
-
net10.0-ios26.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress.Core (>= 0.6.0-preview)
-
net10.0-maccatalyst26.0
- Microsoft.Maui.Controls (>= 10.0.90)
- Plugin.Maui.MVVMExpress.Core (>= 0.6.0-preview)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Plugin.Maui.MVVMExpress:
| Package | Downloads |
|---|---|
|
Plugin.Maui.MVVMExpress.Dialogs
MauiDialogs adapts IDialogs to DisplayAlert. MauiNotifier shows an in-app toast overlay. ViewModels depend on IDialogs / INotifier, not Page. |
|
|
Plugin.Maui.MVVMExpress.Navigation
MauiShellNavigator and MauiPageNavigator map ViewModel types to Shell routes or Pages with typed and dictionary URI args. INavigator and GuardedNavigator live in Core. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.3.0 | 113 | 9/8/2026 |
| 1.0.2 | 115 | 9/7/2026 |
| 1.0.1 | 130 | 9/6/2026 |
| 1.0.0 | 112 | 9/2/2026 |
| 0.6.1-preview | 103 | 9/1/2026 |
| 0.6.0-preview | 103 | 9/1/2026 |
| 0.5.0-preview | 110 | 9/1/2026 |
| 0.4.0-preview | 106 | 9/1/2026 |
| 0.3.0-preview | 107 | 9/1/2026 |
| 0.1.1-preview | 101 | 8/31/2026 |
| 0.1.0-preview | 106 | 8/31/2026 |
0.6.0-preview: UI-thread marshal for commands and dialogs, no-throw Execute, host UseShell/UseDialogs, dirty confirm, auth challenge.