VijayAnand.MauiBlazor.Markup 4.0.0-preview.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of VijayAnand.MauiBlazor.Markup.
This package has a SemVer 2.0.0 package version: 4.0.0-preview.3+sha.94c6cc2.
dotnet add package VijayAnand.MauiBlazor.Markup --version 4.0.0-preview.3
NuGet\Install-Package VijayAnand.MauiBlazor.Markup -Version 4.0.0-preview.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VijayAnand.MauiBlazor.Markup" Version="4.0.0-preview.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VijayAnand.MauiBlazor.Markup --version 4.0.0-preview.3
#r "nuget: VijayAnand.MauiBlazor.Markup, 4.0.0-preview.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install VijayAnand.MauiBlazor.Markup as a Cake Addin
#addin nuget:?package=VijayAnand.MauiBlazor.Markup&version=4.0.0-preview.3&prerelease

// Install VijayAnand.MauiBlazor.Markup as a Cake Tool
#tool nuget:?package=VijayAnand.MauiBlazor.Markup&version=4.0.0-preview.3&prerelease

.NET MAUI Blazor Toolkit

This toolkit a set of fluent helper methods and classes to simplify working with .NET MAUI Blazor in C#.

This toolkit depends on Microsoft.AspNetCore.Components.WebView.Maui NuGet package.

Most useful method will be Configure, which can be invoked on an instance of a BlazorWebView and its derivatives, and it simplifies the initialization of BlazorWebView into a single fluent method call as shown in the below sample.

Note: Gateway is a Razor component and assumes it can receive a parameter named Foo as described in the sample underneath.

namespace MyApp;

public class HomePage : ContentPage
{
    public HomePage()
    {
        // A BlazorWebView can manage multiple RootComponents, to achieve this, define another Tuple with values of that component
        // The method and Tuple parameter names are shown for clarity and it's optional
        // Blazor component can have initialization parameters, which can be supplied thro parameters, a dictionary of keyValues
        // where key is of type string and value is of type object

        // Without initialization parameters
        Content = new BlazorWebView().Configure(hostPage: "wwwroot/index.html", (selector: "#app", componentType: typeof(Gateway), parameters: null));

        // With optional initialization parameters
        Content = new BlazorWebView().Configure(hostPage: "wwwroot/index.html", (selector: "#app", componentType: typeof(Gateway), parameters: new Dictionary<string, object?> { [nameof(Gateway.Foo)] = "Bar" }));

        // In a much simplified form - Real intended usage
        // Without initialization parameters
        Content = new BlazorWebView().Configure("wwwroot/index.html", ("#app", typeof(Gateway), null));

        // With StartPath property introduced in .NET 8 or later, overloaded Configure method
        // Assuming search is the page with which the app is intended to start
        Content = new BlazorWebView().Configure("wwwroot/index.html", "/search", ("#app", typeof(Gateway), null));

        // With optional initialization parameters
        Content = new BlazorWebView().Configure("wwwroot/index.html", ("#app", typeof(Gateway), new Dictionary<string, object?> { [nameof(Gateway.Foo)] = "Bar" }));
    }
}
@page "/gateway"

<h2>I'm a razor component named Gateway and I can receive a parameter named Foo.</h2>

@code {
    [Parameter]
    public string Foo { get; set; }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on VijayAnand.MauiBlazor.Markup:

Repository Stars
egvijayanand/dotnet-maui-samples
.NET MAUI Samples
Version Downloads Last updated
4.0.0-preview.3 26 4/18/2024
4.0.0-preview.2 39 3/17/2024
4.0.0-preview.1 51 2/18/2024
3.0.5 29 4/18/2024
3.0.4 55 4/1/2024
3.0.3 51 3/17/2024
3.0.2 48 2/18/2024
3.0.1 51 1/26/2024
3.0.0 135 11/14/2023
3.0.0-rc.2.2 43 11/7/2023
3.0.0-rc.2.1 51 10/31/2023
3.0.0-rc.2 45 10/13/2023
3.0.0-rc.1 52 9/18/2023
3.0.0-preview.7 78 8/24/2023
3.0.0-preview.6 69 8/8/2023
3.0.0-preview.5 88 4/13/2023
3.0.0-preview.4 82 3/27/2023
3.0.0-preview.3 73 3/21/2023
3.0.0-preview.2 73 3/17/2023
3.0.0-preview.1 75 2/27/2023
2.0.10 54 11/7/2023
2.0.9 59 10/31/2023
2.0.8 68 10/13/2023
2.0.7 84 8/24/2023
2.0.6 71 8/24/2023
2.0.5 143 4/13/2023
2.0.4 95 3/27/2023
2.0.3 91 2/27/2023
2.0.1 277 12/13/2022
2.0.0 315 11/14/2022
1.0.12 87 8/24/2023
1.0.11 81 3/27/2023
1.0.10 92 2/27/2023
1.0.8 268 12/13/2022
1.0.7 313 11/14/2022
1.0.1 417 6/15/2022
1.0.0 618 5/23/2022
1.0.0-pre7 129 5/11/2022
1.0.0-pre6 143 4/28/2022
1.0.0-pre5 132 4/12/2022
1.0.0-pre4 124 3/18/2022
1.0.0-pre3 141 2/25/2022
1.0.0-pre2 159 1/31/2022
1.0.0-pre1 113 1/31/2022

Join me on Developer Thoughts, https://egvijayanand.in/, an exclusive blog for .NET MAUI and Blazor.

What's new in ver. 4.0.0-preview.3:
-----------------------------------
This version of package is released on top of .NET MAUI on .NET 9 Preview 3 (9.0.0-preview.3.10457) version.

v4.0.0-preview.2:

This version of package is released on top of .NET MAUI on .NET 9 Preview 2 (9.0.0-preview.2.10293) version.

v4.0.0-preview.1:

This version of package is released on top of .NET MAUI on .NET 9 Preview 1 (9.0.0-preview.1.9973) version.