Soenneker.Maui.Blazor.Bridge 3.0.242

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Maui.Blazor.Bridge --version 3.0.242
                    
NuGet\Install-Package Soenneker.Maui.Blazor.Bridge -Version 3.0.242
                    
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="3.0.242" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Maui.Blazor.Bridge" Version="3.0.242" />
                    
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 3.0.242
                    
#r "nuget: Soenneker.Maui.Blazor.Bridge, 3.0.242"
                    
#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@3.0.242
                    
#: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=3.0.242
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Maui.Blazor.Bridge&version=3.0.242
                    
Install as a Cake Tool

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

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 Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  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
3.0.248 0 9/5/2025
3.0.247 67 9/3/2025
3.0.246 61 9/3/2025
3.0.245 63 9/3/2025
3.0.244 75 9/3/2025
3.0.243 119 8/15/2025
3.0.242 131 8/14/2025
3.0.241 131 8/12/2025
3.0.240 131 8/11/2025
3.0.239 128 8/11/2025
3.0.238 121 8/11/2025
3.0.237 132 8/11/2025
3.0.236 129 8/11/2025
3.0.235 203 8/7/2025
3.0.234 218 8/5/2025
3.0.233 212 8/5/2025
3.0.232 218 8/5/2025
3.0.231 191 8/5/2025
3.0.230 179 8/5/2025
3.0.229 439 7/24/2025
3.0.228 137 7/14/2025
3.0.227 130 7/11/2025
3.0.226 144 7/9/2025
3.0.225 140 7/9/2025
3.0.224 138 7/8/2025
3.0.223 141 7/8/2025
3.0.222 135 7/8/2025
3.0.221 135 7/3/2025
3.0.220 129 7/2/2025
3.0.219 127 7/1/2025
3.0.218 104 6/28/2025
3.0.217 92 6/28/2025
3.0.216 68 6/28/2025
3.0.215 65 6/28/2025
3.0.214 67 6/28/2025
3.0.213 78 6/27/2025
3.0.212 80 6/27/2025
3.0.211 293 6/12/2025
3.0.210 287 6/11/2025
3.0.209 287 6/11/2025
3.0.208 285 6/11/2025
3.0.207 288 6/10/2025
3.0.206 285 6/10/2025
3.0.205 135 6/3/2025
3.0.204 150 5/28/2025
3.0.203 146 5/28/2025
3.0.202 147 5/28/2025
3.0.201 143 5/27/2025
3.0.200 142 5/27/2025
3.0.199 139 5/27/2025
3.0.198 141 5/27/2025
3.0.197 103 5/23/2025
3.0.196 119 5/23/2025
3.0.195 127 5/23/2025
3.0.194 130 5/23/2025
3.0.193 131 5/23/2025
3.0.192 143 5/22/2025
3.0.190 157 5/19/2025
3.0.189 149 5/18/2025
3.0.188 104 5/18/2025
3.0.187 229 5/14/2025
3.0.186 232 5/14/2025
3.0.185 232 5/14/2025
3.0.184 219 5/13/2025
3.0.183 226 5/13/2025
3.0.182 254 5/13/2025
3.0.181 155 5/8/2025
3.0.180 144 5/8/2025
3.0.179 149 5/8/2025
3.0.178 152 5/8/2025
3.0.177 144 5/8/2025
3.0.176 156 5/8/2025
3.0.175 144 5/8/2025
3.0.174 152 5/8/2025
3.0.173 148 5/7/2025
3.0.172 143 5/5/2025
3.0.171 141 5/5/2025
3.0.170 150 5/5/2025
3.0.169 140 5/5/2025
3.0.168 143 5/5/2025
3.0.167 144 5/5/2025
3.0.166 146 5/5/2025
3.0.165 143 5/5/2025
3.0.163 162 5/5/2025
3.0.162 171 4/11/2025
3.0.161 165 4/9/2025
3.0.160 157 4/9/2025
3.0.159 162 4/9/2025
3.0.158 162 4/8/2025
3.0.157 160 4/8/2025
3.0.156 169 4/8/2025
3.0.154 151 4/8/2025
3.0.153 149 4/8/2025
3.0.152 162 4/8/2025
3.0.151 157 4/8/2025
3.0.150 161 4/8/2025
3.0.149 157 4/8/2025
3.0.148 160 4/8/2025
3.0.147 154 4/8/2025
3.0.146 160 4/8/2025
3.0.145 165 4/8/2025
3.0.144 157 4/8/2025
3.0.143 161 4/7/2025
3.0.142 163 4/7/2025
3.0.141 166 4/7/2025
3.0.140 164 4/7/2025
3.0.139 166 4/7/2025
3.0.138 172 4/7/2025
3.0.137 175 4/7/2025
3.0.136 179 4/7/2025
3.0.135 169 4/7/2025
3.0.134 167 4/7/2025
3.0.133 177 4/7/2025
3.0.132 174 4/7/2025
3.0.131 183 4/7/2025
3.0.130 165 4/7/2025
3.0.129 166 4/7/2025
3.0.128 172 4/7/2025
3.0.127 179 4/7/2025
3.0.126 163 4/6/2025
3.0.125 170 4/6/2025
3.0.124 164 4/6/2025
3.0.123 185 4/6/2025
3.0.122 136 4/6/2025
3.0.121 143 4/6/2025
3.0.120 121 4/6/2025
3.0.119 118 4/6/2025
3.0.118 120 4/6/2025
3.0.117 113 4/5/2025
3.0.116 114 4/5/2025
3.0.115 90 4/5/2025
3.0.114 98 4/5/2025
3.0.113 90 4/5/2025
3.0.112 97 4/5/2025
3.0.111 105 4/5/2025
3.0.110 91 4/4/2025
3.0.109 104 4/4/2025
3.0.108 134 4/4/2025
3.0.107 150 4/4/2025
3.0.106 144 4/4/2025
3.0.105 148 4/4/2025
3.0.104 161 4/4/2025
3.0.103 152 4/4/2025
3.0.102 160 4/3/2025
3.0.101 164 4/1/2025
3.0.100 155 4/1/2025
3.0.99 156 4/1/2025
3.0.98 151 4/1/2025
3.0.97 149 4/1/2025
3.0.96 159 4/1/2025
3.0.95 159 4/1/2025
3.0.94 153 4/1/2025
3.0.93 160 4/1/2025
3.0.92 151 4/1/2025
3.0.91 155 4/1/2025
3.0.90 153 4/1/2025
3.0.89 158 4/1/2025
3.0.88 164 4/1/2025
3.0.87 162 3/31/2025
3.0.86 157 3/31/2025
3.0.85 164 3/31/2025
3.0.84 158 3/29/2025
3.0.83 95 3/29/2025
3.0.82 96 3/29/2025
3.0.81 89 3/29/2025
3.0.80 103 3/29/2025
3.0.79 96 3/29/2025
3.0.78 122 3/28/2025
3.0.77 136 3/27/2025
3.0.76 139 3/27/2025
3.0.75 137 3/27/2025
3.0.74 465 3/26/2025
3.0.73 477 3/26/2025
3.0.72 469 3/25/2025
3.0.71 469 3/25/2025
3.0.70 467 3/25/2025
3.0.69 480 3/25/2025
3.0.68 101 3/22/2025
3.0.67 78 3/22/2025
3.0.66 93 3/21/2025
3.0.65 115 3/21/2025
3.0.64 116 3/21/2025
3.0.63 139 3/21/2025
3.0.62 155 3/19/2025
3.0.61 155 3/19/2025
3.0.60 150 3/18/2025
3.0.59 148 3/18/2025
3.0.58 156 3/18/2025
3.0.57 145 3/18/2025
3.0.56 153 3/18/2025
3.0.55 154 3/18/2025
3.0.54 150 3/18/2025
3.0.53 152 3/18/2025
3.0.52 143 3/16/2025
3.0.51 141 3/16/2025
3.0.50 87 3/15/2025
3.0.49 87 3/15/2025
3.0.48 88 3/15/2025
3.0.47 82 3/15/2025
3.0.46 90 3/15/2025
3.0.45 83 3/15/2025
3.0.44 152 3/14/2025
3.0.43 154 3/13/2025
3.0.42 169 3/12/2025
3.0.41 169 3/12/2025
3.0.40 175 3/11/2025
3.0.39 171 3/11/2025
3.0.38 185 3/11/2025
3.0.37 188 3/11/2025
3.0.36 176 3/11/2025
3.0.35 180 3/11/2025
3.0.34 179 3/11/2025
3.0.33 215 3/7/2025
3.0.32 226 3/7/2025
3.0.31 231 3/7/2025
3.0.30 209 3/7/2025
3.0.29 222 3/7/2025
3.0.28 223 3/7/2025
3.0.27 213 3/7/2025
3.0.26 224 3/7/2025
3.0.25 223 3/7/2025
3.0.24 220 3/4/2025
3.0.23 212 3/4/2025
3.0.22 224 3/3/2025
3.0.21 221 3/3/2025
3.0.20 105 3/3/2025
3.0.19 141 3/3/2025
3.0.18 123 3/3/2025
3.0.17 121 3/2/2025
3.0.15 111 3/2/2025
3.0.14 121 3/2/2025
3.0.13 113 3/2/2025
3.0.12 112 3/2/2025
3.0.11 115 3/2/2025
3.0.10 119 3/2/2025
3.0.9 113 3/2/2025
3.0.8 114 3/2/2025
3.0.7 107 3/1/2025
3.0.6 108 3/1/2025
3.0.5 115 3/1/2025
3.0.4 114 3/1/2025
3.0.3 113 3/1/2025
3.0.2 109 3/1/2025
3.0.1 104 3/1/2025