Skip to content
Discussion options

You must be logged in to vote

Hi there is an extension method currently missing that will assist with this.
It will be added in the upcoming release

public static IReactiveUIBuilder UsingSplatBuilder(this IReactiveUIBuilder reactiveUIBuilder, Action<IAppBuilder>? appBuilder)
{
    appBuilder?.Invoke(reactiveUIBuilder);
    return reactiveUIBuilder;
}

In addition to this there will be a UseReactiveUI extension for Maui which will then allow the following

public static class MauiProgram
{
    /// <summary>
    /// Creates the maui application.
    /// </summary>
    /// <returns>A <see cref="MauiApp"/>.</returns>
    public static MauiApp CreateMauiApp()
    {
        var builder = MauiApp.CreateBuilder();
        builder

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by glennawatson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants