Plugin.Maui.MVVMExpress 1.0.1

dotnet add package Plugin.Maui.MVVMExpress --version 1.0.1
                    
NuGet\Install-Package Plugin.Maui.MVVMExpress -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Plugin.Maui.MVVMExpress" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Plugin.Maui.MVVMExpress" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Plugin.Maui.MVVMExpress" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Plugin.Maui.MVVMExpress --version 1.0.1
                    
#r "nuget: Plugin.Maui.MVVMExpress, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Plugin.Maui.MVVMExpress@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Plugin.Maui.MVVMExpress&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Plugin.Maui.MVVMExpress&version=1.0.1
                    
Install as a Cake Tool

Plugin.Maui.MVVMExpress

MAUI host for MVVMExpress. Supported: Android, iOS, Mac Catalyst, and Windows (single-window). DI, main-thread marshal, and page lifecycle.

NuGet

Depends on Plugin.Maui.MVVMExpress.Core.

builder
    .UseMauiApp<App>()
    .UseMvvmExpress(o => o
        .UseNavigationPage()
        .UseDialogs()
        .UseAuth<LoginViewModel>());

Shell is optional:

builder.UseMvvmExpress(o => o.UseShell().UseDialogs().UseAuth<LoginViewModel>());

UseMvvmExpress calls AddMvvmExpress(), replaces IMainThread with MauiMainThread, and marshals command/property/navigation work. UseNavigationPage / UseShell / UseDialogs live in the Navigation and Dialogs packages. UseAuth<TChallenge>() wraps GuardedNavigator. Chat-style apps: chat-host cookbook.

Install

dotnet add package Plugin.Maui.MVVMExpress.Core
dotnet add package Plugin.Maui.MVVMExpress

Target frameworks: net10.0, net10.0-android (API 21+), net10.0-ios (iOS 15+), net10.0-maccatalyst (15+), and net10.0-windows10.0.19041.0 (Windows 10 17763+; packed when MSBuild runs on Windows). Windows apps otherwise resolve net10.0. Version 1.0.0.

What this package is

  • UseMvvmExpress on MauiAppBuilder
  • UseAuth<TChallenge>() — host auth without reconstructing GuardedNavigator
  • MauiMainThread (IMainThread)
  • ViewModelLifecycleBehavior for page appear / disappear

It is not a navigator or dialog implementation. Add Navigation and Dialogs when you need page or Shell routes, toasts, or DisplayAlert. MauiWindowContext and MauiVisualTree resolve the current window/page.

Shared / test code can stay on Core + AddMvvmExpress() without this package.

Product docs: repository README. License: MIT. Niladri Padhy / MauiEssentials.

Product 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-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0.1 29 9/6/2026
1.0.0 53 9/2/2026
0.6.1-preview 48 9/1/2026
0.6.0-preview 48 9/1/2026
0.5.0-preview 51 9/1/2026
0.4.0-preview 53 9/1/2026
0.3.0-preview 47 9/1/2026
0.1.1-preview 50 8/31/2026
0.1.0-preview 60 8/31/2026

1.0.0: SemVer lock. UseAuth(TChallenge) on UseMvvmExpress. 15-minute getting started, cheat sheet, cookbook, Playground.