Plugin.Maui.MVVMExpress.Core
0.5.0-preview
See the version list below for details.
dotnet add package Plugin.Maui.MVVMExpress.Core --version 0.5.0-preview
NuGet\Install-Package Plugin.Maui.MVVMExpress.Core -Version 0.5.0-preview
<PackageReference Include="Plugin.Maui.MVVMExpress.Core" Version="0.5.0-preview" />
<PackageVersion Include="Plugin.Maui.MVVMExpress.Core" Version="0.5.0-preview" />
<PackageReference Include="Plugin.Maui.MVVMExpress.Core" />
paket add Plugin.Maui.MVVMExpress.Core --version 0.5.0-preview
#r "nuget: Plugin.Maui.MVVMExpress.Core, 0.5.0-preview"
#:package Plugin.Maui.MVVMExpress.Core@0.5.0-preview
#addin nuget:?package=Plugin.Maui.MVVMExpress.Core&version=0.5.0-preview&prerelease
#tool nuget:?package=Plugin.Maui.MVVMExpress.Core&version=0.5.0-preview&prerelease
Plugin.Maui.MVVMExpress.Core
UI-framework-free MVVM primitives for .NET. No MAUI reference.
ObservableModel, ViewModel lifecycle, async commands, AsyncState<T>, Outcome, messaging, INavigator, ICache, and IAuthState.
public sealed class HomeViewModel : ViewModel
{
public AsyncState<IReadOnlyList<Product>> Products { get; } = new();
public AsyncModelCommand RefreshCommand { get; }
public HomeViewModel(ICatalog catalog)
{
RefreshCommand = new AsyncModelCommand(
ct => Products.LoadAsync(token => catalog.ListAsync(token), ct));
}
}
Install
dotnet add package Plugin.Maui.MVVMExpress.Core --prerelease
Target framework: net10.0. Version 0.5.0-preview — generators, persist/auth, and the operation pipeline ship. Shipped APIs are the 1.0 contract.
services.AddMvvmExpress(); // tests and shared libraries
MAUI apps also add Plugin.Maui.MVVMExpress and call UseMvvmExpress().
What this package is
ViewModel/PageViewModelwith dispose andViewModelCancellationTokenModelCommand/AsyncModelCommand(prevent, cancel-previous, timeout, retry)AsyncState<T>,Outcome,BusyGate,IMessageHubObservableRangeCollection<T>(AddRange→ one notify)- Abstractions:
INavigator,IDialogs,ICache/ICachedFetcher,IConnectivityProbe,IAuthState,IFeatureSwitch,IPermissionGate FormViewModel,IDirtyState,IOperationExecutor, childAttach
Do not call Page.DisplayAlert or Shell.Current from a ViewModel. Use IDialogs / INavigator.
Related
Product docs: repository README. Changelog: CHANGELOG.md.
Prefer CommunityToolkit.Mvvm for properties and commands only. Production adapters: SecureSession, ApiCache, NetworkMonitor (Niladri Padhy / MauiEssentials).
License: MIT.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Microsoft.Extensions.DependencyInjection (>= 10.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Plugin.Maui.MVVMExpress.Core:
| Package | Downloads |
|---|---|
|
Plugin.Maui.MVVMExpress
MAUI host for MVVMExpress on Android, iOS, Mac Catalyst, and Windows: UseMvvmExpress, main-thread dispatcher, and page lifecycle behavior. Depends on Plugin.Maui.MVVMExpress.Core. |
|
|
Plugin.Maui.MVVMExpress.Validation
IValidator and DataAnnotationsValidator for MVVMExpress. FluentValidation remains an optional app-level adapter. |
|
|
Plugin.Maui.MVVMExpress.Testing
LeakProbe, ScaleProfile, FakeDialogs, FakeNavigator, FakeMainThread, FakeConnectivity, FakeMessageHub, ViewModelLifecycle, and ScopedNavigator for unit-testing MVVMExpress ViewModels. |
|
|
Plugin.Maui.MVVMExpress.Pagination
PagedCollection, DelegatePagedCollection, refresh, and SearchQuery debounce for MVVMExpress lists. |
|
|
Plugin.Maui.MVVMExpress.Reactive
Optional derived-state and property observables for MVVMExpress. System.Reactive is not required by Core. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.1 | 48 | 9/6/2026 |
| 1.0.0 | 78 | 9/2/2026 |
| 0.6.1-preview | 68 | 9/1/2026 |
| 0.6.0-preview | 75 | 9/1/2026 |
| 0.5.0-preview | 79 | 9/1/2026 |
| 0.4.0-preview | 67 | 9/1/2026 |
| 0.3.0-preview | 68 | 9/1/2026 |
| 0.1.1-preview | 75 | 8/31/2026 |
| 0.1.0-preview | 78 | 8/31/2026 |
0.5.0-preview: source generators, persist/auth attributes, CommunityToolkit adapter, AOT registration.