# MudBlazor
**Repository Path**: frh0792/MudBlazor
## Basic Information
- **Project Name**: MudBlazor
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: dev
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2026-02-27
- **Last Updated**: 2026-02-27
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# 
# Material Design components for Blazor

[](https://sonarcloud.io/summary/overall?id=MudBlazor_MudBlazor)
[](https://app.codecov.io/github/MudBlazor/MudBlazor)
[](https://github.com/mudblazor/MudBlazor/blob/master/LICENSE)
[](https://github.com/mudblazor/MudBlazor/stargazers)
[](https://github.com/mudblazor/mudblazor/graphs/contributors)
[](https://github.com/mudblazor/mudblazor/discussions)
[](https://discord.gg/mudblazor)
[](https://twitter.com/MudBlazor)
[](https://www.nuget.org/packages/MudBlazor/)
[](https://www.nuget.org/packages/MudBlazor/)
Build stunning, interactive web applications with MudBlazor โ the open-source Material Design library for Blazor.
**๐ [Documentation](https://mudblazor.com/docs/overview) โก [Interactive Playground](https://try.mudblazor.com)**
## ๐ Why Choose MudBlazor?
๐ Comprehensive documentation and examples
๐จ Beautiful Material Design components
๐ป Write in C# with minimal JavaScript
โ Extensive test coverage
## ๐ Repo Stats

## ๐ Getting Started
Use one of our [templates](https://github.com/MudBlazor/Templates), or follow the quick install guide below:
### Installation
Install Package:
```bash
dotnet add package MudBlazor
```
Add to `_Imports.razor`:
```razor
@using MudBlazor
```
Add to `MainLayout.razor` or `App.razor`:
```razor
```
Add to HTML `head` section (`index.html`/`_Layout.cshtml`/`_Host.cshtml`/`App.razor`):
```razor
```
Add to the default Blazor script at the end of the HTML `body` section:
```razor
```
Add to `Program.cs`:
```c#
using MudBlazor.Services;
```
```c#
builder.Services.AddMudServices();
```
### Example Usage
```razor
MudBlazor is @Text
@ButtonText
@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";
}
}
```
For more details, see the [full installation guide](https://mudblazor.com/getting-started/installation).
## ๐ค Contributing
Contributions from the community are what make MudBlazor successful.
๐ฌ Feel free to chat with us [on Discord](https://discord.gg/mudblazor) to get feedback before diving in.
๐ Check out our [contribution guidelines](/CONTRIBUTING.md) to get started and learn more about how the project works.
๐งช If a PR fixes something you reported, [locally test it](https://github.com/MudBlazor/MudBlazor/discussions/12085) 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](https://dotnet.microsoft.com/download/dotnet/6.0), [.NET 7](https://dotnet.microsoft.com/download/dotnet/7.0), [.NET 8](https://dotnet.microsoft.com/download/dotnet/8.0) | Ended Jan 2025 |
| 7.x.x | [.NET 7](https://dotnet.microsoft.com/download/dotnet/7.0), [.NET 8](https://dotnet.microsoft.com/download/dotnet/8.0) | Ended Jan 2026 |
| 8.x.x | [.NET 8](https://dotnet.microsoft.com/download/dotnet/8.0), [.NET 9](https://dotnet.microsoft.com/download/dotnet/9.0) | Limited Support |
| 9.x.x | [.NET 8](https://dotnet.microsoft.com/download/dotnet/8.0), [.NET 9](https://dotnet.microsoft.com/download/dotnet/9.0), [.NET 10](https://dotnet.microsoft.com/download/dotnet/10.0) | โ Full Support |
> [!NOTE]
> 1. Upgrading? Check our [Migration Guide](https://github.com/MudBlazor/MudBlazor/discussions/12086) for help with breaking changes.
> 2. Static rendering is not supported. [Learn more](https://learn.microsoft.com/aspnet/core/blazor/components/render-modes)
> 3. Use an up-to-date browser. [Blazor supported platforms](https://learn.microsoft.com/aspnet/core/blazor/supported-platforms)
> 4. Want to test the latest features? Learn about our [nightly builds](https://github.com/MudBlazor/MudBlazor/discussions/12621)!