Blazor.M3 1.4.1

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

Blazor.M3 Standard (Core)

Package Rename Notice (v1.0.2) To improve NuGet discoverability and adhere to standard .NET naming conventions, we have renamed our packages and namespaces from BlazorM3 to Blazor.M3.

  • BlazorM3.Standard is now Blazor.M3
  • BlazorM3.Pro is now Blazor.M3.Pro
  • BlazorM3.Templates is now Blazor.M3.Templates

We sincerely apologize for this breaking change. Bumping the version to 1.0.2 marks this migration. Please update your package references and @using statements.

NuGet Version License: MIT Website

A premier Material Design 3 (M3) component library for Blazor, built with fidelity, performance, and accessibility as first-class citizens. For full documentation and live demos, visit blazorm3.pages.dev. This Standard edition provides the essential structural foundations, theming engine, and core components required to build modern, responsive web applications following Google's latest design language.

🆕 Recent Updates (v1.4.1)

  • Syntax Directive Patch: Fixed @namespace directive syntax in M3DialogProvider, M3Banner, and M3Skeleton components to prevent literal namespace string rendering.
  • System Stability: Updated package versions, templates, and static assets to reference the stable v1.4.1 build.

🚀 Quick Start

1. Install the Package

dotnet add package Blazor.M3

The easiest way to start a new project is using our pre-configured Blazor WebAssembly template:

# Install the templates
dotnet new install Blazor.M3.Templates

# Create a new project
dotnet new blazorm3app -n MyNewApp

3. Manual Registration

In your Program.cs:

using Blazor.M3.Extensions;

builder.Services.AddBlazorM3();

3. Add Static Assets

Add the following to your index.html or App.razor:

<link rel="stylesheet" href="_content/Blazor.M3/css/root.css" />
<link rel="stylesheet" href="_content/Blazor.M3/css/typography.css" />
<link rel="stylesheet" href="_content/Blazor.M3/css/elevation.css" />
<link rel="stylesheet" href="_content/Blazor.M3/css/shape.css" />
<link rel="stylesheet" href="_content/Blazor.M3/css/state.css" />
<script src="_content/Blazor.M3/js/blazor-m3.js"></script>

4. Enable Global Imports

Add the following to your _Imports.razor:

@using Blazor.M3.Components
@using Blazor.M3.Enums

✨ Features

  • Design Tokens: Full implementation of MD3 color roles, typography scales, and elevation levels.
  • Dynamic Theming: Support for light/dark mode and custom color seeds.
  • Core Components:
    • Buttons (Filled, Tonal, Outlined, Elevated, Text)
    • Button Groups (Action, Single, Multi)
    • Icon Buttons
    • Cards (Elevated, Filled, Outlined)
    • Typography system
    • Navigation Drawer foundations
    • Sliders (Continuous and Discrete)
    • And more...

🛡️ License

Free for hobbyists and small businesses. Distributed under the MIT License. See LICENSE for more information.


Built with ❤️ by Arietta Solutions

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 (1)

Showing the top 1 NuGet packages that depend on Blazor.M3:

Package Downloads
Blazor.M3.Pro

Pro edition of the Blazor.M3 component library. Includes advanced components like M3DataTable, M3FileUploader, Range Sliders, and Side Sheets.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.1 66 8/26/2026
1.4.0 91 8/23/2026
1.3.0 123 7/27/2026
1.2.0 134 7/11/2026
1.1.0 125 7/7/2026
1.0.3 130 6/26/2026
1.0.2 131 6/24/2026

- Patch release v1.4.1: Fixed @namespace directive syntax in M3DialogProvider, M3Banner, and M3Skeleton components.