BlazorNative.Renderer 0.5.1

dotnet add package BlazorNative.Renderer --version 0.5.1
                    
NuGet\Install-Package BlazorNative.Renderer -Version 0.5.1
                    
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="BlazorNative.Renderer" Version="0.5.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BlazorNative.Renderer" Version="0.5.1" />
                    
Directory.Packages.props
<PackageReference Include="BlazorNative.Renderer" />
                    
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 BlazorNative.Renderer --version 0.5.1
                    
#r "nuget: BlazorNative.Renderer, 0.5.1"
                    
#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 BlazorNative.Renderer@0.5.1
                    
#: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=BlazorNative.Renderer&version=0.5.1
                    
Install as a Cake Addin
#tool nuget:?package=BlazorNative.Renderer&version=0.5.1
                    
Install as a Cake Tool

BlazorNative.Renderer

The BlazorNative renderer: it drives Blazor's RenderTree diffing into a native widget tree and emits binary UI patch frames that platform shells (Kotlin/Android, Swift/iOS) apply to real native views. NativeAOT/trim-compatible.

Where it sits

Your app → BlazorNative.ComponentsBlazorNative.RendererBlazorNative.Runtime → the native shells. The renderer is the diff engine in the middle: components render into it, shells consume the patch frames it emits.

What you use from it

var services = new ServiceCollection().AddBlazorNativeRenderer();
await using var provider = services.BuildServiceProvider();
var renderer = provider.GetRequiredService<NativeRenderer>();
renderer.Frames += (frame, _) => { /* apply patches */ return ValueTask.CompletedTask; };
await renderer.MountAsync<MyRootComponent>(ParameterView.Empty);

In a real app the runtime hosts the renderer for you — direct use is a harness/test concern.

Status

Pre-1.0 (0.x): BlazorNative is a proof of concept heading toward a stable release. The ABI and component surface may still move between minor versions.

License: MIT · Docs: https://marcelroozekrans.github.io/BlazorNative/

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on BlazorNative.Renderer:

Package Downloads
BlazorNative.Runtime

The BlazorNative runtime: the 10 blazornative_* native exports, the host session, the binary frame/bridge wire protocol, and the BlazorNativeApp.RegisterPages registration API through which an app names its pages. NativeAOT/trim-compatible — the app owns the publish head.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.1 13 7/23/2026
0.5.0 38 7/23/2026
0.4.1 57 7/21/2026
0.4.0 59 7/21/2026
0.3.0 68 7/20/2026
0.2.0 70 7/20/2026
0.1.1 62 7/20/2026
0.1.0 70 7/19/2026