Plugin.Maui.MVVMExpress.Reactive
0.6.1-preview
See the version list below for details.
dotnet add package Plugin.Maui.MVVMExpress.Reactive --version 0.6.1-preview
NuGet\Install-Package Plugin.Maui.MVVMExpress.Reactive -Version 0.6.1-preview
<PackageReference Include="Plugin.Maui.MVVMExpress.Reactive" Version="0.6.1-preview" />
<PackageVersion Include="Plugin.Maui.MVVMExpress.Reactive" Version="0.6.1-preview" />
<PackageReference Include="Plugin.Maui.MVVMExpress.Reactive" />
paket add Plugin.Maui.MVVMExpress.Reactive --version 0.6.1-preview
#r "nuget: Plugin.Maui.MVVMExpress.Reactive, 0.6.1-preview"
#:package Plugin.Maui.MVVMExpress.Reactive@0.6.1-preview
#addin nuget:?package=Plugin.Maui.MVVMExpress.Reactive&version=0.6.1-preview&prerelease
#tool nuget:?package=Plugin.Maui.MVVMExpress.Reactive&version=0.6.1-preview&prerelease
Plugin.Maui.MVVMExpress.Reactive
Optional derived-state package for MVVMExpress. System.Reactive is not required by Core.
var fullName = PropertyObservable.CombineLatest(
PropertyObservable.Observe(vm, nameof(vm.First), () => vm.First ?? ""),
PropertyObservable.Observe(vm, nameof(vm.Last), () => vm.Last ?? ""),
static (first, last) => $"{first} {last}".Trim());
Install
dotnet add package Plugin.Maui.MVVMExpress.Reactive --prerelease
Target framework: net10.0. Version 0.6.1-preview. Prefer ReactiveUI when the app already wants Rx operators.
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-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
- Plugin.Maui.MVVMExpress.Core (>= 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 | 60 | 9/8/2026 |
| 1.0.2 | 75 | 9/7/2026 |
| 1.0.1 | 92 | 9/6/2026 |
| 1.0.0 | 81 | 9/2/2026 |
| 0.6.1-preview | 77 | 9/1/2026 |
| 0.6.0-preview | 79 | 9/1/2026 |
| 0.5.0-preview | 76 | 9/1/2026 |
| 0.4.0-preview | 80 | 9/1/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.