How can I help you?
Integrating Blazor with .NET MAUI Blazor Hybrid and Web App
25 May 20265 minutes to read
This section explains how to create and run a .NET MAUI Blazor Hybrid and Web App together with a Blazor Web App using Blazor DataGrid components.
Create a new .NET MAUI Blazor Hybrid and Blazor Web App in Visual Studio
- Open Visual Studio.
- Click Create a new project.
- Search for .NET MAUI Blazor Hybrid and Web App.
- Select the template and create the project.
The template generates the shared RCL, .NET MAUI Blazor Hybrid App, and Blazor Web App.

Install Blazor DataGrid and Themes NuGet in the app
Open the NuGet Package Manager in Visual Studio by selecting (Tools → NuGet Package Manager → Manage NuGet Packages for Solution), and then install the required packages. All Syncfusion Blazor packages are available on nuget.org. See the NuGet packages topic for details.
Install the following packages
Add required namespaces
Open both of the following files and add the namespaces.
-
~/Components/_Imports.razor(.NET MAUI Blazor Hybrid App) -
~/Components/_Imports.razor(Blazor Web App)
@using Syncfusion.Blazor
@using Syncfusion.Blazor.GridsRegister Blazor service
Add the Blazor service in both the MauiProgram.cs file of the .NET MAUI Blazor Hybrid App and the ~/Program.cs file of the Blazor Web App to enable Blazor components in the application.
using Syncfusion.Blazor;
....
builder.Services.AddMauiBlazorWebView();
builder.Services.AddSyncfusionBlazor();
....using Syncfusion.Blazor;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
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 and script references in the ~wwwroot/index.html file of your .NET MAUI Blazor Hybrid App and in the ~/Components/App.razor file of your Blazor Web App.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
....
<link href="_content/Syncfusion.Blazor.Themes/fluent2.css" rel="stylesheet" />
</head>
<body>
....
<div id="app">Loading...</div>
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<script src="_framework/blazor.webview.js" autostart="false"></script>
</body>
</html><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
....
<link href="_content/Syncfusion.Blazor.Themes/fluent2.css" rel="stylesheet" />
<HeadOutlet />
</head>
<body>
<Routes />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<script src="_framework/blazor.web.js"></script>
</body>
</html>Add Blazor DataGrid component
Include the Blazor DataGrid component in any razor file. In this example, the DataGrid component is added in ~/Pages/Home.razor under the ~/Pages folder of the .Shared App.
@page "/"
@using Syncfusion.Blazor.Grids
<SfGrid DataSource="@Orders" />
@code{
public List<Order> Orders { get; set; }
protected override void OnInitialized()
{
Orders = Enumerable.Range(1, 5).Select(x => new Order()
{
OrderID = x,
CustomerID = (new string[] { "ALFKI", "ANANTR", "ANTON", "BLONP", "BOLID" })[new Random().Next(5)],
}).ToList();
}
public class Order
{
public int? OrderID { get; set; }
public string CustomerID { get; set; }
}
}In the Visual Studio toolbar, select the Windows Machine target to build and run the .NET MAUI Blazor Hybrid App project. To build and run the Blazor Web App project, select the IIS Express or https profile.

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

NOTE
Download the demo from GitHub.