Soenneker.Maui.Blazor.Bridge 3.0.258

Prefix Reserved
dotnet add package Soenneker.Maui.Blazor.Bridge --version 3.0.258
                    
NuGet\Install-Package Soenneker.Maui.Blazor.Bridge -Version 3.0.258
                    
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.258" />
                    
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.258" />
                    
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.258
                    
#r "nuget: Soenneker.Maui.Blazor.Bridge, 3.0.258"
                    
#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.258
                    
#: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.258
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Maui.Blazor.Bridge&version=3.0.258
                    
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.258 255 9/16/2025
3.0.257 126 9/10/2025
3.0.256 125 9/10/2025
3.0.255 123 9/9/2025
3.0.254 128 9/9/2025
3.0.253 124 9/9/2025
3.0.252 126 9/9/2025
3.0.251 101 9/7/2025
3.0.250 101 9/6/2025
3.0.249 101 9/6/2025
3.0.248 86 9/5/2025
3.0.247 147 9/3/2025
3.0.246 137 9/3/2025
3.0.245 139 9/3/2025
3.0.244 141 9/3/2025
3.0.243 122 8/15/2025
3.0.242 134 8/14/2025
3.0.241 133 8/12/2025
3.0.240 133 8/11/2025
3.0.239 132 8/11/2025
3.0.238 123 8/11/2025
3.0.237 134 8/11/2025
3.0.236 131 8/11/2025
3.0.235 205 8/7/2025
3.0.234 220 8/5/2025
3.0.233 214 8/5/2025
3.0.232 221 8/5/2025
3.0.231 193 8/5/2025
3.0.230 181 8/5/2025
3.0.229 462 7/24/2025
3.0.228 140 7/14/2025
3.0.227 132 7/11/2025
3.0.226 146 7/9/2025
3.0.225 142 7/9/2025
3.0.224 141 7/8/2025
3.0.223 143 7/8/2025
3.0.222 137 7/8/2025
3.0.221 137 7/3/2025
3.0.220 132 7/2/2025
3.0.219 129 7/1/2025
3.0.218 106 6/28/2025
3.0.217 94 6/28/2025
3.0.216 71 6/28/2025
3.0.215 68 6/28/2025
3.0.214 69 6/28/2025
3.0.213 84 6/27/2025
3.0.212 82 6/27/2025
3.0.211 297 6/12/2025
3.0.210 289 6/11/2025
3.0.209 290 6/11/2025
3.0.208 288 6/11/2025
3.0.207 290 6/10/2025
3.0.206 288 6/10/2025
3.0.205 140 6/3/2025
3.0.204 154 5/28/2025
3.0.203 148 5/28/2025
3.0.202 149 5/28/2025
3.0.201 145 5/27/2025
3.0.200 145 5/27/2025
3.0.199 142 5/27/2025
3.0.198 145 5/27/2025
3.0.197 115 5/23/2025
3.0.196 121 5/23/2025
3.0.195 132 5/23/2025
3.0.194 134 5/23/2025
3.0.193 137 5/23/2025
3.0.192 153 5/22/2025
3.0.190 166 5/19/2025
3.0.189 154 5/18/2025
3.0.188 108 5/18/2025
3.0.187 231 5/14/2025
3.0.186 234 5/14/2025
3.0.185 235 5/14/2025
3.0.184 221 5/13/2025
3.0.183 228 5/13/2025
3.0.182 261 5/13/2025
3.0.181 158 5/8/2025
3.0.180 152 5/8/2025
3.0.179 152 5/8/2025
3.0.178 157 5/8/2025
3.0.177 147 5/8/2025
3.0.176 161 5/8/2025
3.0.175 147 5/8/2025
3.0.174 157 5/8/2025
3.0.173 151 5/7/2025
3.0.172 146 5/5/2025
3.0.171 143 5/5/2025
3.0.170 154 5/5/2025
3.0.169 143 5/5/2025
3.0.168 146 5/5/2025
3.0.167 146 5/5/2025
3.0.166 151 5/5/2025
3.0.165 146 5/5/2025
3.0.163 170 5/5/2025
3.0.162 174 4/11/2025
3.0.161 167 4/9/2025
3.0.160 158 4/9/2025
3.0.159 164 4/9/2025
3.0.158 164 4/8/2025
3.0.157 162 4/8/2025
3.0.156 175 4/8/2025
3.0.154 155 4/8/2025
3.0.153 151 4/8/2025
3.0.152 166 4/8/2025
3.0.151 158 4/8/2025
3.0.150 165 4/8/2025
3.0.149 159 4/8/2025
3.0.148 162 4/8/2025
3.0.147 155 4/8/2025
3.0.146 162 4/8/2025
3.0.145 173 4/8/2025
3.0.144 158 4/8/2025
3.0.143 162 4/7/2025
3.0.142 165 4/7/2025
3.0.141 168 4/7/2025
3.0.140 165 4/7/2025
3.0.139 173 4/7/2025
3.0.138 174 4/7/2025
3.0.137 176 4/7/2025
3.0.136 181 4/7/2025
3.0.135 170 4/7/2025
3.0.134 170 4/7/2025
3.0.133 179 4/7/2025
3.0.132 176 4/7/2025
3.0.131 187 4/7/2025
3.0.130 167 4/7/2025
3.0.129 168 4/7/2025
3.0.128 177 4/7/2025
3.0.127 180 4/7/2025
3.0.126 167 4/6/2025
3.0.125 172 4/6/2025
3.0.124 165 4/6/2025
3.0.123 189 4/6/2025
3.0.122 139 4/6/2025
3.0.121 144 4/6/2025
3.0.120 122 4/6/2025
3.0.119 121 4/6/2025
3.0.118 128 4/6/2025
3.0.117 114 4/5/2025
3.0.116 116 4/5/2025
3.0.115 92 4/5/2025
3.0.114 100 4/5/2025
3.0.113 92 4/5/2025
3.0.112 99 4/5/2025
3.0.111 106 4/5/2025
3.0.110 93 4/4/2025
3.0.109 107 4/4/2025
3.0.108 135 4/4/2025
3.0.107 155 4/4/2025
3.0.106 147 4/4/2025
3.0.105 150 4/4/2025
3.0.104 163 4/4/2025
3.0.103 154 4/4/2025
3.0.102 161 4/3/2025
3.0.101 165 4/1/2025
3.0.100 165 4/1/2025
3.0.99 157 4/1/2025
3.0.98 152 4/1/2025
3.0.97 151 4/1/2025
3.0.96 161 4/1/2025
3.0.95 162 4/1/2025
3.0.94 158 4/1/2025
3.0.93 164 4/1/2025
3.0.92 152 4/1/2025
3.0.91 161 4/1/2025
3.0.90 156 4/1/2025
3.0.89 163 4/1/2025
3.0.88 169 4/1/2025
3.0.87 164 3/31/2025
3.0.86 159 3/31/2025
3.0.85 166 3/31/2025
3.0.84 159 3/29/2025
3.0.83 100 3/29/2025
3.0.82 98 3/29/2025
3.0.81 91 3/29/2025
3.0.80 108 3/29/2025
3.0.79 98 3/29/2025
3.0.78 125 3/28/2025
3.0.77 138 3/27/2025
3.0.76 141 3/27/2025
3.0.75 139 3/27/2025
3.0.74 467 3/26/2025
3.0.73 478 3/26/2025
3.0.72 470 3/25/2025
3.0.71 471 3/25/2025
3.0.70 469 3/25/2025
3.0.69 482 3/25/2025
3.0.68 103 3/22/2025
3.0.67 79 3/22/2025
3.0.66 94 3/21/2025
3.0.65 117 3/21/2025
3.0.64 117 3/21/2025
3.0.63 141 3/21/2025
3.0.62 156 3/19/2025
3.0.61 156 3/19/2025
3.0.60 152 3/18/2025
3.0.59 150 3/18/2025
3.0.58 157 3/18/2025
3.0.57 148 3/18/2025
3.0.56 154 3/18/2025
3.0.55 155 3/18/2025
3.0.54 154 3/18/2025
3.0.53 154 3/18/2025
3.0.52 146 3/16/2025
3.0.51 143 3/16/2025
3.0.50 90 3/15/2025
3.0.49 89 3/15/2025
3.0.48 94 3/15/2025
3.0.47 84 3/15/2025
3.0.46 93 3/15/2025
3.0.45 84 3/15/2025
3.0.44 153 3/14/2025
3.0.43 157 3/13/2025
3.0.42 170 3/12/2025
3.0.41 176 3/12/2025
3.0.40 176 3/11/2025
3.0.39 173 3/11/2025
3.0.38 187 3/11/2025
3.0.37 193 3/11/2025
3.0.36 178 3/11/2025
3.0.35 186 3/11/2025
3.0.34 180 3/11/2025
3.0.33 215 3/7/2025
3.0.32 226 3/7/2025
3.0.31 235 3/7/2025
3.0.30 210 3/7/2025
3.0.29 223 3/7/2025
3.0.28 229 3/7/2025
3.0.27 214 3/7/2025
3.0.26 225 3/7/2025
3.0.25 224 3/7/2025
3.0.24 221 3/4/2025
3.0.23 212 3/4/2025
3.0.22 225 3/3/2025
3.0.21 221 3/3/2025
3.0.20 106 3/3/2025
3.0.19 142 3/3/2025
3.0.18 124 3/3/2025
3.0.17 123 3/2/2025
3.0.15 111 3/2/2025
3.0.14 123 3/2/2025
3.0.13 113 3/2/2025
3.0.12 116 3/2/2025
3.0.11 116 3/2/2025
3.0.10 119 3/2/2025
3.0.9 114 3/2/2025
3.0.8 116 3/2/2025
3.0.7 110 3/1/2025
3.0.6 108 3/1/2025
3.0.5 121 3/1/2025
3.0.4 114 3/1/2025
3.0.3 115 3/1/2025
3.0.2 109 3/1/2025
3.0.1 105 3/1/2025