Prism plugin for navigating Mopups with Prism
Just register IContainerRegistry
from prism like this
private void RegisterServices(IContainerRegistry containerRegistry)
{
// register other services
containerRegistry.RegisterPopupNavigationService();
}
Don't forget to also register Mopups
in MauiProgram like this
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder.UseMauiApp<App>()
.UsePrism(PrismRegistry.Configure)
.ConfigureMopups();
}
For more info please check the samples.