ModelingEvolution.MudBlazor 9.7.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package ModelingEvolution.MudBlazor --version 9.7.0.1
                    
NuGet\Install-Package ModelingEvolution.MudBlazor -Version 9.7.0.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="ModelingEvolution.MudBlazor" Version="9.7.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModelingEvolution.MudBlazor" Version="9.7.0.1" />
                    
Directory.Packages.props
<PackageReference Include="ModelingEvolution.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 ModelingEvolution.MudBlazor --version 9.7.0.1
                    
#r "nuget: ModelingEvolution.MudBlazor, 9.7.0.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 ModelingEvolution.MudBlazor@9.7.0.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=ModelingEvolution.MudBlazor&version=9.7.0.1
                    
Install as a Cake Addin
#tool nuget:?package=ModelingEvolution.MudBlazor&version=9.7.0.1
                    
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

MudBlazor is an ambitious Material Design component framework for Blazor with an emphasis on ease of use and clear structure. It is perfect for .NET developers who want to rapidly build web applications without having to struggle with CSS and Javascript. MudBlazor, being written entirely in C#, empowers you to adapt, fix or extend the framework. There are plenty of examples in the documentation, which makes understanding and learning MudBlazor very easy.

๐ŸŒ Documentation โšก Interactive Playground

๐Ÿ’Ž Why Choose MudBlazor?

  • Clean and aesthetic graphic design based on Material Design.
  • Clear and easy to understand structure.
  • Good documentation with many examples and source snippets.
  • All components are written entirely in C#, no JavaScript allowed (except where absolutely necessary).
  • Users can make beautiful apps without needing CSS (but they can of course use CSS too).
  • No dependencies on other component libraries, 100% control over components and features.
  • Stability! We strive for a complete test coverage.
  • Releasing often so developers can get their PRs and fixes in a timely fashion.

๐Ÿ“Š 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 (1)

Showing the top 1 NuGet packages that depend on ModelingEvolution.MudBlazor:

Package Downloads
ModelingEvolution.Chat

Event-sourced chat (workspaces, channels, participants) with MudBlazor 9 Blazor components: conversation list, conversation view, message input, Markdown message rendering. Server-side command handlers and read models over MicroPlumberd/KurrentDB.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.7.0.4 60 8/25/2026
9.7.0.3 64 8/24/2026
9.7.0.2 52 8/24/2026
9.7.0.1 47 8/24/2026