Nucleus MVVM for MAUI

December 27, 2025 ยท View on GitHub

Nucleus MVVM is a framework written to be used in .NET MAUI projects. It is build on top of MAUI, the CommunityToolkit.Mvvm and the CommunityToolkit.Maui. Its purpose is for better separation of UI and logic using MVVM conventions.

NuGet version (Mvvm.Nucleus.Maui)

Note: Nucleus MVVM updates are usually fully backwards-compatible, but sometimes deprecations are inevitable. If you're upgrading, do check the following resources:

Index

Main features

  • Navigation from ViewModels through INavigationService (using Shell).
  • Displaying Alerts, Dialogs and ActionSheets through IPageDialogService.
  • Displaying Popups through IPopupService.
  • Automatic creation and assigning of ViewModels and Views (using a Behavior).
  • ViewModels and Popup events (e.a. Appearing, Navigation, Initialization) through interfaces.
  • Flexibility in Views and ViewModels, no base classes are required.
  • Basic Prism compatibility for migrating an existing codebase.

Overview

Basic usage

  1. Register Views (e.a. pages) with matching ViewModels in MauiProgram.
  2. Navigate to pages using INavigationService (resolved through IoC).
  3. Implement interfaces to handle flow (e.a. IPrepare, IPageLifecycleAware etc.).
  4. Optionally use the IPopupService and IPageDialogService when necessary.

Services

Services are available through Dependency Injection. They can be overriden or subclassed by registering an alternative service implementing the same interface before calling UseNucleusMvvm.

ViewModel interfaces

Interfaces are used to automatically introduce callbacks and events to registered ViewModels. Additionally, the interfaces IPrepare(Async), IRefresh(Async), IDestructible also support implementation within a Page. Note that for popups there are additional popup interfaces.

  • IPrepare(Async)
    • Triggers when a page is created, but before it is returned for navigation.
    • Allows for using NavigationParameters before rendering (synchronously) or as early as possible (asynchronously).
  • IRefresh(Async)
    • Triggers when navigating back to a page (e.a. after navigating deeper).
    • Triggers when navigating to a singleton page that is being reused.
    • Can be used to (partially) reload data.
  • IInitializable(Async): Init and Refresh functions upon navigating.
    • This interface relies on OnNavigated events and triggers after navigation has finished.
    • [Obsolete] Use IPrepare(Async) and IRefresh(Async) instead.
  • IPageLifecycleAware: The OnAppearing and OnDisappearing events from a page.
  • IApplicationLifeCycleAware: The OnPause and OnResume events from the application.
  • IConfirmNavigation(Async): Allows to interupt the navigation, by default limited to Pop and Push events (see Configuration).
  • IDestructible: Triggered when transient pages are removed from the stack.
  • INavigatedAware: Navigation events 'from' and 'to' the ViewModel.

ViewModel structure

  • Use the ViewModel constructor or IPrepare to load fast non-async data, which will be loaded before navigation, meaning you can use one-time bindings.
  • Use IPrepareAsync to load async data as early as possible, but keep in mind navigation can still finish before this method completes (so use proper bindings)
  • Use IRefresh or IRefreshAsync for pages or popups that should reload (partially) when navigated to another time, or for Singleton implementations.
  • The logic for refreshing should be optimized to only refresh data that may have changed, improving the performance of the app.

Installation

Nucleus MVVM is available as a NuGet package. After adding the package it requires little code to get started and remains similar to a regular MAUI app. It is recommended to add the Mvvm.Nucleus.Maui namespace to your GlobalUsings.

To get started:

  1. Remove CreateWindow(IActivationState? activationState) in App.xaml.cs.
  2. Replace UseMauiApp<App> and UseCommunityToolkit with UseNucleusMvvm<App, AppShell>.
  3. Then configure Nucleus, at the minimum the page(s) in AppShell using the options.

See Navigation and Popups for the usage of the RegisterShellView, RegisterView and RegisterPopup, .

Note: you should not call UseMauiCommunityToolkit, this is included with UseNucleusMvvm. If you need to configure the Community Toolkit you can access the options through UseNucleusMvvm.

builder
.UseNucleusMvvm<App, AppShell>(options =>
{
    options.RegisterTypes(dependencyOptions => 
        dependencyOptions.RegisterShellView<MyAbsoluteView, MyAbsoluteViewModel>("//MyAbsoluteView");
        dependencyOptions.RegisterView<MyGlobalView, MyGlobalViewModel>("//MyGlobalView");
    );
})
.Etc..

ViewModels can be of any type and support dependency injection. By implementing interfaces (see Navigation interfaces and Popup interfaces) they can trigger logic on events like navigation or its page appearing. It is recommended for a ViewModel to have ObservableObject as a base for its bindings.

Configuration

Within the options the following additional settings can be changed:

  • AddQueryParametersToDictionary: Default true. If set, query parameters (e.a. route?key=val) are automatically added to the navigation parameter dictionary.
  • AlwaysDisableNavigationAnimation: Default false. If set, no animations will be used during navigating, regardless of isAnimated (only when using the INavigationService).
  • IgnoreNavigationWhenInProgress: Default true. If set, when trying to navigate using the INavigationService while it is already busy will ignore other requests.
  • IgnoreNavigationWithinMilliseconds: Default 250. If set, when trying to navigate using the INavigationService while a previous request was done within the given milliseconds will ignore other requests.
  • UseShellNavigationQueryParameters: Default true. If set navigation parameters are passed to Shell as the one-time-use ShellNavigationQueryParameters.
  • UseConfirmNavigationForAllNavigationRequests: Default false. If set, all navigation requests will be passed to the IConfirmNavigation and IConfirmNavigationAsync interfaces. Otherwise only Push and Pop requests are used.
  • UseDeconstructPageOnDestroy: Default true. Unload behaviors and unset bindingcontext of pages when they are popped.
  • UseDeconstructPopupOnDestroy: Default true. Unset the bindingcontext and parent of popups when they are dismissed.
  • UseCommunityToolkitPopupServiceCompatibility: Default true. Enables usage of the CommunityToolkit.PopupService on top of the build-in Mvvm.Nucleus.Maui.PopupService. You only need to register popups through Nucleus for this to work.
  • UseAlternativePopupOpenedAndClosedEvents: Default: true. If set the IPopupLifecycleAware will do an additional check on the default Popup Opened and Closed events, see Popups for details.
  • CommunityToolkitV1PopupServicePopupOptions: Default: null. If set this value will be used in the CommunityToolkitV1PopupService compatibility service.

See the Sample Project in the repository for more examples of Nucleus MVVM usage.

Navigation can be done through the INavigationService. Currently only the Shell implemention is supported. Navigation is done by either specifying the (type of the) View or a Route.

  • await NavigateAsync<Home>();
  • await NavigateAsync(typeof(Home))
  • await NavigateAsync("//Home");

Views and their ViewModels need to be registered in MauiProgram.cs. Pages defined within AppShell.xaml are known as absolute routes and should be registered using RegisterShellView<MyView, MyViewModel>("//MyRoute"). It is important that the given route matches the XAML.

Any pages not defined witin AppShell.xaml are known as global routes and can be pushed from any page. You can register these simply as RegisterView<MyGlobalView, MyGlobalViewModel>(), as by default they will get their name as route. You can however supply a custom one. Routes always have to be unique, or the registration will fail.

Passing data

When navigating an IDictionary<string, object> can be passed to the INavigationService, which will be passed to the Init and Refresh or various Navigated events. The dictionary will only be passed once and it will never be null. In routes query string parameters are supported as well (e.a. ?myValue=value), but not the recommended approach.

Values can be retrieved using regular IDictionary methods, but additionally there are the following extensions:

  • NavigationParameters.GetValueOrDefault<T>(key, defaultValue)
  • NavigationParameters.GetStructOrDefault<T>(key, defaultValue)

These parameters can also be used as described in the MAUI documentation, including accessing them through IQueryAttributable and QueryProperty. By default the values will be wrapped inside ShellNavigationQueryParameters, but this can be turned off in the Nucleus MVVM options (see Getting started).

Additional data is included by Nucleus through the navigation parameters for advances use-cases, notably through the extension GetShellNavigationSource.

When navigating Nucleus will look for certain parameters in the navigation parameter IDictionary<string, object>. Currently the following parameters are supported:

  • NucleusNavigationParameters.NavigatingPresentationMode: Expects a PresentationMode that will be added to the page.
  • NucleusNavigationParameters.WrapInNavigationPage: Wraps a NavigationPage around the target, allowing for deeper navigation within a modal page.

Note that above parameters allow for modal presentation in Shell including deeper navigation (see the Sample Project in the repository). However this appears an underdeveloped area of Shell and might not be stable.

Avoiding double navigation

On slower devices it is a common issue that users are able to trigger multiple navigation requests by pressing a button one more than once, either too quickly or while waiting for the navigation to start. When using the CommunityToolkit (Async)RelayCommand this problem is reduced, as the Command will be disabled while it's processing. But since a navigation Task returns before it has finished navigating, it can still occur.

Nucleus offers two features to improve the navigation behavior, both are enabled by default. These are IgnoreNavigationWhenInProgress and IgnoreNavigationWithinMilliseconds, see Configuration.

In specific cases you might want to bypass these restrictions, but not disable them fully. In those cases you can add NucleusNavigationParameters.DoNotIgnoreThisNavigationRequest in the NavigationParameters and set it to true.

Popups

Nucleus can display CommunityToolkit.MAUI Popups through the IPopupService, similar to navigation. The CommunityToolkit.PopupService is also supported, as long as options.UseCommunityToolkitPopupServiceCompatibility is set to true.

Note that navigating to popups should always navigate by passing the View type, not the ViewModel.

Popups can be used with or without ViewModels and require registration in MauiProgram.cs using RegisterPopup<MyPopup> or RegisterPopup<MyPopup, MyPopupViewModel>. They can be shown by passing the view type to one of the various ShowPopupAsync methods. Popups are by default registered as Transient, but support Scoped and Singleton as well.

Parameters can be sent through an IDictionary<string, object>, which will be passed to Prepare(Async) as well as IQueryAttributable.

Note: By default the Opened and Closed events that are passed to IPopupLifeCycleAware have additional logic to ensure the Popup is actually closed, and not just currently deeper in the navigation stack. This can occur in the CommunityToolkit when presenting a Popup from within a Popup, which we consider a bug. This functionality can be disabled through UseAlternativePopupOpenedAndClosedEvents.

Below interfaces below work on both the ViewModel and the View or Popup, with the exception of IPopupAware<T>.

  • IPopupPrepare(Async)
    • Similar to the IPrepare(Async), this triggers when a popup is created but before it is returned for navigation.
    • Contrary to IPrepare this interface also triggers for singleton and no IRefresh(Async) exists.
    • Additionally can be configured to await the async method before navigating to the popup.
  • IPopupInitializable(Async):
    • The original name of the IPopupPrepare(Async) interface, functions completely identical.
    • [Obsolete] Use IPopupPrepare(Async) instead. This was renamed to match the page viewmodel interfaces.
  • IPopupAware: Allows access to the generic Popup type using a WeakReference.
  • IPopupAware<T>: Allows access to an exact Popup type using a WeakReference.
  • IPopupLifeCycleAware: Events on opening and closing the popup.
  • IDestructible: Triggered when a transient popup is closed.

Closing and return values

The IPopupService can either show a popup with or without an expected return value, wrapped in an IPopupResult. The methods that return a value other than the generic result, require the use of a Popup<T> (T being the return type).

To close the popup and return the value you can either use IPopupService.CloseMostRecentPopupAsync, or the IPopupAware and IPopupAware<T> interfaces. Note that you can always access CloseAsync() fom the WeakReference<Popup>, but To access CloseAsync(value) you need to use IPopupAware<T> (where T matches the used Popup<T>).

if (Popup?.TryGetTarget(out MyCustomPopup? myCustomPopup) == true)
{
    await myCustomPopup.CloseAsync("result");
}

Migrating from Nucleus 0.5.0

Nucleus uses the Popup functionality from the Maui.CommunityToolkit. In version 12.x of the toolkit a large breaking change was done, known as the V2 Popups. This required significant changes to the Nucleus implementation as well, which were part of the 0.6.0 release.

A migration guide has been written to help migrate from the previous implementation to the current.

Prism Compatibility

Prism is a popular library offering the same (and quite a few more) features as this library. Nucleus MVVM aims to be a simpler alternative, only adding quality-of-life MVVM features as a layer on top of MAUI. This should result in an easy to maintain library able to use the latest MAUI features.

Some compatibility classes have been included to simplify migration for projects limited to simple navigation and MVVM functionality. Nucleus MVVM is a much simpler library however, so when using more advanced Prism features this might require significant rework. This functionality has been added to the Mvvm.Nucleus.Maui.Compatibility namespace.

Included are:

  • Interfaces for similar ViewModels events (e.a. IPageLifecycleAware) are mostly kept identical to Prism.
  • BindableBase class has been created to add some missing functions to ObservableObject.
  • NavigationParameters class has been added as a named IDictionary<string, object>.
  • IsBackNavigation and GetNavigationMode extensions (see below for more details).

The NavigationParameters compatibility class differs from IDictionary in that it returns null when accessing a non-existing key, which is how it works in Prism. It's here to ensure that if you have code that expects this logic, it will continue to work as expected.

The NavigationMode and IsBackNavigation and GetNavigationMode methods are included to ease migration, but the concept does not translate well for advanced cases, such as navigating multiple levels at once. It is recommended to use IInitializable(Async) for handling a return to a Page or ViewModel, or using GetShellNavigationSource when dealing with complex logic.

Contrary to Prism, dependency injection in Nucleus uses the default Microsoft implementation, which means that apart from registering Views/ViewModels, any other registration should be done through the usual Services.AddSingleton<> and similar.

Limitations and plans

  • There's no support yet for multiple Windows, a single Window with Shell will be created.
  • Currently Shell is a required component for navigation, although theoretically a custom implementation could be added in the future.
  • Initial logic for subviews recieving page events has been added, but is not a fully supported concept yet.

Support

  • Bugs and feature requests can be created through GitHub issues.