VOOZH about

URL: https://www.nuget.org/packages/Soenneker.Maui.Blazor.Bridge/

⇱ NuGet Gallery | Soenneker.Maui.Blazor.Bridge 4.0.633




👁 Image
Soenneker.Maui.Blazor.Bridge 4.0.633

Prefix Reserved
dotnet add package Soenneker.Maui.Blazor.Bridge --version 4.0.633
 
 
NuGet\Install-Package Soenneker.Maui.Blazor.Bridge -Version 4.0.633
 
 
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="Soenneker.Maui.Blazor.Bridge" Version="4.0.633" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Maui.Blazor.Bridge" Version="4.0.633" />
 
Directory.Packages.props
<PackageReference Include="Soenneker.Maui.Blazor.Bridge" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Maui.Blazor.Bridge --version 4.0.633
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Soenneker.Maui.Blazor.Bridge, 4.0.633"
 
 
#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.
#:package Soenneker.Maui.Blazor.Bridge@4.0.633
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Maui.Blazor.Bridge&version=4.0.633
 
Install as a Cake Addin
#tool nuget:?package=Soenneker.Maui.Blazor.Bridge&version=4.0.633
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

👁 alternate text is missing from this package README image
Soenneker.Maui.Blazor.Bridge

👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image
👁 alternate text is missing from this package README image

Effortlessly integrate MAUI components within BlazorWebView, enabling seamless interaction between Blazor and native MAUI UI elements.


Features

  • Embed MAUI components directly inside BlazorWebView like HTML elements.
  • Maintain a structured overlay system for native elements.
  • Provides typed and generic bridges for flexible component integration.

Installation

Install the package via NuGet:

dotnet add package Soenneker.Maui.Blazor.Bridge

Register the interop in CreateMauiApp:

public static MauiApp CreateMauiApp()
{
 var builder = MauiApp.CreateBuilder();
 builder.Services.AddMauiBlazorBridgeAsScoped();
}

Layout Setup

To integrate MAUI components within BlazorWebView, modify your MainPage.xaml.
Wrap the BlazorWebView inside a Grid, and include an AbsoluteLayout (OverlayContainer) to host native elements:

<Grid>
 
 <BlazorWebView x:Name="blazorWebView"
 HostPage="wwwroot/index.html">
 <BlazorWebView.RootComponents>
 <RootComponent Selector="#app" ComponentType="{x:Type local:Routes}" />
 </BlazorWebView.RootComponents>
 </BlazorWebView>

 
 <AbsoluteLayout x:Name="OverlayContainer" BackgroundColor="Transparent" InputTransparent="True" />
</Grid>

This setup ensures that MAUI-native elements overlay correctly within your BlazorWebView.


Usage

To bridge MAUI elements into Blazor, use either:

  • MauiBlazorTypedBridge<T> (Typed binding)
  • MauiBlazorGenericBridge (Generic binding)

Example: Embedding a MauiLabel in Blazor

@page "/"

@implements IAsyncDisposable

<MauiBlazorTypedBridge @ref="_bridge" TComponent="MauiLabel" Component="_label"></MauiBlazorTypedBridge>

@code {
 MauiLabel? _label;
 MauiBlazorTypedBridge<MauiLabel>? _bridge;

 protected override void OnInitialized()
 {
 _label = new MauiLabel 
 { 
 Text = "This is a MAUI Label", 
 BackgroundColor = Colors.Transparent, 
 TextColor = Colors.Black 
 };
 }

 public async ValueTask DisposeAsync()
 {
 if (_bridge != null)
 await _bridge.DisposeAsync();
 }
}

This example adds a MauiLabel component inside a Blazor page, allowing it to function within the BlazorWebView.

Product Versions Compatible and additional computed target framework versions.
.NET net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.633 0 6/19/2026
4.0.632 0 6/18/2026
4.0.631 47 6/18/2026
4.0.630 69 6/18/2026
4.0.629 68 6/17/2026
4.0.628 93 6/17/2026
4.0.627 83 6/17/2026
4.0.626 88 6/16/2026
4.0.625 91 6/15/2026
4.0.624 95 6/15/2026
4.0.623 93 6/14/2026
4.0.622 91 6/14/2026
4.0.621 93 6/14/2026
4.0.620 93 6/12/2026
4.0.619 94 6/12/2026
4.0.618 91 6/12/2026
4.0.617 93 6/11/2026
4.0.616 90 6/11/2026
4.0.615 89 6/10/2026
4.0.614 99 6/10/2026
Loading failed

Update dependency Soenneker.Blazor.CallbackRegistry to 4.0.898 (#1064)