Soenneker.Maui.Blazor.Bridge 3.0.168

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.168
                    
NuGet\Install-Package Soenneker.Maui.Blazor.Bridge -Version 3.0.168
                    
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.168" />
                    
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.168" />
                    
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.168
                    
#r "nuget: Soenneker.Maui.Blazor.Bridge, 3.0.168"
                    
#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.168
                    
#: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.168
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Maui.Blazor.Bridge&version=3.0.168
                    
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.255 0 9/9/2025
3.0.254 0 9/9/2025
3.0.253 0 9/9/2025
3.0.252 0 9/9/2025
3.0.251 60 9/7/2025
3.0.250 59 9/6/2025
3.0.249 62 9/6/2025
3.0.248 80 9/5/2025
3.0.247 141 9/3/2025
3.0.246 135 9/3/2025
3.0.245 137 9/3/2025
3.0.244 138 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 219 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 66 6/28/2025
3.0.214 67 6/28/2025
3.0.213 79 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 286 6/10/2025
3.0.205 135 6/3/2025
3.0.204 151 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 140 5/27/2025
3.0.198 142 5/27/2025
3.0.197 112 5/23/2025
3.0.196 119 5/23/2025
3.0.195 128 5/23/2025
3.0.194 132 5/23/2025
3.0.193 134 5/23/2025
3.0.192 145 5/22/2025
3.0.190 158 5/19/2025
3.0.189 150 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 233 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 156 5/8/2025
3.0.180 146 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 157 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 151 5/5/2025
3.0.169 140 5/5/2025
3.0.168 144 5/5/2025
3.0.167 144 5/5/2025
3.0.166 147 5/5/2025
3.0.165 143 5/5/2025
3.0.163 164 5/5/2025
3.0.162 172 4/11/2025
3.0.161 165 4/9/2025
3.0.160 157 4/9/2025
3.0.159 163 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 163 4/8/2025
3.0.151 157 4/8/2025
3.0.150 162 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 166 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 167 4/7/2025
3.0.138 172 4/7/2025
3.0.137 175 4/7/2025
3.0.136 180 4/7/2025
3.0.135 169 4/7/2025
3.0.134 167 4/7/2025
3.0.133 178 4/7/2025
3.0.132 174 4/7/2025
3.0.131 184 4/7/2025
3.0.130 165 4/7/2025
3.0.129 167 4/7/2025
3.0.128 173 4/7/2025
3.0.127 179 4/7/2025
3.0.126 164 4/6/2025
3.0.125 170 4/6/2025
3.0.124 164 4/6/2025
3.0.123 186 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 120 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 91 4/5/2025
3.0.114 99 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 92 4/4/2025
3.0.109 104 4/4/2025
3.0.108 134 4/4/2025
3.0.107 151 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 153 4/4/2025
3.0.102 160 4/3/2025
3.0.101 164 4/1/2025
3.0.100 157 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 154 4/1/2025
3.0.93 161 4/1/2025
3.0.92 151 4/1/2025
3.0.91 158 4/1/2025
3.0.90 153 4/1/2025
3.0.89 158 4/1/2025
3.0.88 166 4/1/2025
3.0.87 162 3/31/2025
3.0.86 158 3/31/2025
3.0.85 164 3/31/2025
3.0.84 158 3/29/2025
3.0.83 98 3/29/2025
3.0.82 97 3/29/2025
3.0.81 90 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 138 3/27/2025
3.0.74 466 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 116 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 151 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 145 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 89 3/15/2025
3.0.47 83 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 155 3/13/2025
3.0.42 169 3/12/2025
3.0.41 171 3/12/2025
3.0.40 175 3/11/2025
3.0.39 172 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 181 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 232 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 224 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 113 3/2/2025
3.0.11 115 3/2/2025
3.0.10 119 3/2/2025
3.0.9 114 3/2/2025
3.0.8 115 3/2/2025
3.0.7 108 3/1/2025
3.0.6 108 3/1/2025
3.0.5 116 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