Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Blazor Component Library based on Material design. The goal is to do more with Blazor, utilizing CSS and keeping Javascript to a bare minimum.

License

Notifications You must be signed in to change notification settings

Yomodo/MudBlazor

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

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

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

Use one of our templates, or follow the quick install guide below:

Installation

Install Package:

dotnet add package MudBlazor

Add to _Imports.razor:

@using MudBlazor

Add to MainLayout.razor or App.razor:

<MudThemeProvider/>
<MudPopoverProvider/>
<MudDialogProvider/>
<MudSnackbarProvider/>

Add to HTML head section (index.html/_Layout.cshtml/_Host.cshtml/App.razor):

<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />

Add to the default Blazor script at the end of the HTML body section:

<script src="_content/MudBlazor/MudBlazor.min.js"></script>

Add to Program.cs:

using MudBlazor.Services;
builder.Services.AddMudServices();

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";
    }
}

For more details, see the full installation guide.

🀝 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 Limited Support
8.x.x .NET 8, .NET 9 βœ… 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

About

Blazor Component Library based on Material design. The goal is to do more with Blazor, utilizing CSS and keeping Javascript to a bare minimum.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 75.6%
  • HTML 21.2%
  • SCSS 2.1%
  • Other 1.1%