MudBlazor 9.4.0

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

Material Design components for Blazor

GitHub Workflow Status Quality Gate Status Codecov GitHub GitHub Repo stars Contributors Discussions Discord Twitter NuGet version NuGet downloads

Build stunning, interactive web applications with MudBlazor โ€” the open-source Material Design library for Blazor.

๐ŸŒ Documentation โšก Interactive Playground

๐Ÿ’Ž Why Choose MudBlazor?

๐Ÿ“– Comprehensive documentation and examples
๐ŸŽจ Beautiful Material Design components
๐Ÿ’ป Write in C# with minimal JavaScript
โœ… Extensive test coverage

๐Ÿ“Š Repo Stats

Repobeats analytics image

๐Ÿš€ Getting Started

See the installation guide to get started.

Example Usage

<MudText Typo="Typo.h6">
    MudBlazor is @Text
</MudText>

<MudButton Variant="Variant.Filled" 
           Color="Color.Primary" 
           OnClick="ButtonOnClick">
    @ButtonText
</MudButton>

@code {
    string Text { get; set; } = "????";
    string ButtonText { get; set; } = "Click Me";
    int ClickCount { get; set; }

    void ButtonOnClick()
    {
        ClickCount += 1;
        Text = $"Awesome x {ClickCount}";
        ButtonText = "Click Me Again";
    }
}

๐Ÿค Contributing

Contributions from the community are what make MudBlazor successful.

๐Ÿ’ฌ Feel free to chat with us on Discord to get feedback before diving in.
๐Ÿ“š Check out our contribution guidelines to get started and learn more about how the project works.
๐Ÿงช If a PR fixes something you reported, locally test it to ensure your app works as expected.

โš™๏ธ Version Support

MudBlazor .NET Support
5.x.x .NET 5 Ended Jan 2022
6.x.x .NET 6, .NET 7, .NET 8 Ended Jan 2025
7.x.x .NET 7, .NET 8 Ended Jan 2026
8.x.x .NET 8, .NET 9 Limited Support
9.x.x .NET 8, .NET 9, .NET 10 โœ… Full Support

  1. Upgrading? Check our Migration Guide for help with breaking changes.
  2. Static rendering is not supported. Learn more
  3. Use an up-to-date browser. Blazor supported platforms
  4. Want to test the latest features? Learn about our nightly builds!
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  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 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 (306)

Showing the top 5 NuGet packages that depend on MudBlazor:

Package Downloads
CodeBeam.MudBlazor.Extensions

MudBlazor extension components from contributors. Includes 30+ components and utilities.

MudBlazor.ThemeManager

ThemeManager component for MudBlazor to design, test or do live changes to Mudblazor themes.

MudBlazor.Markdown

Markdown component for MudBlazor (https://mudblazor.com/)

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

MudBlazor.Extensions

MudBlazor.Extensions is a small extension library for MudBlazor from https://mudblazor.com/

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.4.0 17,743 4/22/2026
9.3.0 127,206 4/8/2026
9.2.0 202,715 3/18/2026
9.1.0 228,204 3/3/2026
9.0.0 228,166 2/19/2026
9.0.0-rc.1 11,317 2/11/2026
9.0.0-preview.2 12,101 1/14/2026
9.0.0-preview.1 10,151 12/20/2025
8.15.0 1,701,859 11/23/2025
8.14.0 344,807 11/5/2025
8.13.0 583,206 10/1/2025
8.12.0 735,782 9/2/2025
8.11.0 647,744 8/4/2025
8.10.0 265,970 7/19/2025
8.9.0 339,971 7/1/2025
8.8.0 252,645 6/17/2025
8.7.0 490,107 5/30/2025
8.6.0 684,922 4/29/2025
8.5.1 472,885 3/31/2025
8.5.0 65,831 3/30/2025
Loading failed