Skip to content

MudBlazor/MudBlazor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

7,667 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

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?

  • 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

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!

About

Blazor Component Library based on Material Design principles. Do more with Blazor, utilizing CSS and keeping JavaScript to a bare minimum.

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Sponsor this project

  •  

Packages

 
 
 

Contributors