How can I help you?
Getting Started with .NET MAUI Blazor Hybrid App
23 Mar 20267 minutes to read
This section explains how to create and run the .NET Multi-platform Blazor App UI (.NET MAUI Blazor App) with Syncfusion® Blazor components.
To get started quickly with a .NET MAUI Blazor App, review the following video.
What is .NET MAUI Blazor App?
A .NET MAUI Blazor App is a .NET MAUI application where a Blazor Web App is hosted in the .NET MAUI app using the BlazorWebView control. This enables a Blazor Web App to integrate with platform features and UI controls. The BlazorWebView can be added to any page of a .NET MAUI app and pointed to the root of the Blazor App. The Blazor components run in the .NET process and render their web UI into the embedded web view control. .NET MAUI Blazor apps can run on all platforms supported by .NET MAUI.
Visual Studio provides the .NET MAUI Blazor App template to create .NET MAUI Blazor Apps.
Prerequisites
- .NET SDK 8.0 or above
-
Visual Studio 2022 or Visual Studio 2026 with the required workloads:
- Mobile development with .NET
- ASP.NET and web development
Create a new .NET MAUI Blazor App in Visual Studio
Create a .NET MAUI Blazor App using Visual Studio via Microsoft Templates documentation.
BlazorWebView in .NET MAUI Blazor App
The above steps create a multi-targeted .NET MAUI Blazor App that can be deployed to Android, iOS, macOS, and Windows.
In MainPage.xaml, the BlazorWebView is added and points to the root of the Blazor app. The root Blazor component for the app is in Routes.razor, which Razor compiles into a type named Routes in the application’s root namespace.
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MauiBlazorApp"
xmlns:components="clr-namespace:MauiBlazorApp.Components"
x:Class="MauiBlazorApp.MainPage">
<BlazorWebView x:Name="blazorWebView" HostPage="wwwroot/index.html">
<BlazorWebView.RootComponents>
<RootComponent Selector="#app" ComponentType="{x:Type local:Components.Routes}" />
</BlazorWebView.RootComponents>
</BlazorWebView>
</ContentPage>For more details, refer to the Create a .NET MAUI Blazor App topic.
Install Syncfusion® Blazor Grid and Themes NuGet in the App
To add the Blazor DataGrid component to the app, open the NuGet package manager in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), then search and install Syncfusion.Blazor.Grid and Syncfusion.Blazor.Themes. Alternatively, run the following commands in the Package Manager Console to achieve the same.
Install-Package Syncfusion.Blazor.Grid -Version 33.1.44
Install-Package Syncfusion.Blazor.Themes -Version 33.1.44NOTE
Syncfusion® Blazor components are available in nuget.org. Refer to the NuGet packages topic for the available NuGet package list with component details.
Add Import Namespaces
Open the ~/_Imports.razor file and import the Syncfusion.Blazor and Syncfusion.Blazor.Grids namespaces:
@using Syncfusion.Blazor
@using Syncfusion.Blazor.GridsRegister Syncfusion Blazor Service
Register the Syncfusion Blazor service in the MauiProgram.cs file of the MAUI Blazor App.
using Syncfusion.Blazor;
....
builder.Services.AddSyncfusionBlazor();
....Add stylesheet and script resources
The theme stylesheet and script can be accessed from NuGet through Static Web Assets. Include the stylesheet in the <head> and the script at the end of the <body> in the ~wwwroot/index.html file as shown below:
<head>
....
<link href="_content/Syncfusion.Blazor.Themes/bootstrap5.css" rel="stylesheet" />
</head>
<body>
....
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
</body>NOTE
Check out the Blazor Themes topic to discover various methods (Static Web Assets, CDN, and CRG) for referencing themes in the Blazor application. Also, see Adding Script Reference topic to learn different approaches for adding script references in the Blazor application.
Add Syncfusion® Blazor component
Add a Syncfusion Blazor component to any Razor file in the Blazor project. The example below adds the Blazor Grid component into Pages/Home.razor file.
<SfGrid DataSource="@Orders" />
@code {
public List<Order> Orders { get; set; }
protected override void OnInitialized()
{
Orders = Enumerable.Range(1, 5).Select(x => new Order()
{
OrderID = 1000 + x,
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
Freight = 2 * x,
OrderDate = DateTime.Now.AddDays(-x),
}).ToList();
}
public class Order
{
public int? OrderID { get; set; }
public string CustomerID { get; set; }
public DateTime? OrderDate { get; set; }
public double? Freight { get; set; }
}
}In the Visual Studio toolbar, click the Windows Machine to build and run the app. Ensure the run profile is set to Windows Machine before starting the app.

NOTE
To run the application on Android or iOS, refer to MAUI Getting Started for setup instructions.

NOTE
Download the demo from GitHub.
How to use images in .NET MAUI Blazor Application
Add images to the wwwroot folder of the application and reference them using the img tag in the Blazor App.
In the following example, images are added under the images folder in the wwwroot folder.
<img src="images/welcome_picture.png" height="60" width="60" />
Troubleshooting
How to solve deployment errors in Windows?
If the error dialog “There were deployment errors” appears, enable Developer Mode. For more details, refer to Enable your device for development.

How to solve deployment errors in iOS?
In iOS, code is statically compiled ahead of time. Configure Syncfusion® Blazor assemblies in the MtouchExtraArgs tag for the iOS Release configuration in the project when deploying to a real device.
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) And $(Configuration.Contains('Release')) ">
<UseInterpreter>true</UseInterpreter>
<MtouchExtraArgs>--linkskip=Syncfusion.Blazor.Themes --linkskip=Syncfusion.Blazor.Inputs</MtouchExtraArgs>
</PropertyGroup>
Possible errors if the MtouchExtraArgs tag is not configured:
- The app does not load on a real device with the error “An unhandled error has occurred” after compiling in Release mode with Visual Studio and deploying to a real device.
- AOT-related failures such as
Attempting to JIT compile method while running in aot-only mode
Reference:
How to solve “The project doesn’t know how to run the profile Windows Machine” while running MAUI Blazor App?
-
This issue has been addressed in a recent release of Visual Studio. For details, see the discussion here.
-
Alternatively, install Single-project MSIX Packaging Tools to resolve this error.
See also
MAUI Blazor Diagram
NOTE