The Principal Dev โ€“ Masterclass for Tech Leads

The Principal Dev โ€“ Masterclass for Tech Leads28-29 May

Join

MudBlazor Logo

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?

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

[!NOTE]

  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!

Join libs.tech

...and unlock some superpowers

GitHub

We won't share your data with anyone else.