VOOZH about

URL: https://www.nuget.org/packages/MudBlazor/

⇱ NuGet Gallery | MudBlazor 9.5.0


ο»Ώ
dotnet add package MudBlazor --version 9.5.0
 
 
NuGet\Install-Package MudBlazor -Version 9.5.0
 
 
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="MudBlazor" Version="9.5.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MudBlazor" Version="9.5.0" />
 
Directory.Packages.props
<PackageReference Include="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 MudBlazor --version 9.5.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MudBlazor, 9.5.0"
 
 
#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 MudBlazor@9.5.0
 
 
#: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=MudBlazor&version=9.5.0
 
Install as a Cake Addin
#tool nuget:?package=MudBlazor&version=9.5.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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

πŸš€ 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 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 Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows 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 (333)

Showing the top 5 NuGet packages that depend on MudBlazor:

Package Downloads
CodeBeam.MudBlazor.Extensions

MudBlazor extension components from contributors. Includes 30+ components and utilities.

MudBlazor.ThemeManager

ThemeManager component for MudBlazor to design, test or do live changes to Mudblazor themes.

MudBlazor.Markdown

Markdown component for MudBlazor (https://mudblazor.com/)

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

MudBlazor.Extensions

MudBlazor.Extensions is a small extension library for MudBlazor from https://mudblazor.com/

GitHub repositories (78)

Showing the top 20 popular GitHub repositories that depend on MudBlazor:

Repository Stars
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
RayWangQvQ/BiliBiliToolPro
B η«™οΌˆbilibiliοΌ‰θ‡ͺ动任劑ε·₯ε…·οΌŒζ”―ζŒdocker、青龙、k8sη­‰ε€šη§ιƒ¨η½²ζ–ΉεΌγ€‚ε…¨ι’ζ‹₯抱AIγ€‚ζ•ζ„Ÿθ‚ŒδΉŸθƒ½η”¨γ€‚
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
mono/SkiaSharp
SkiaSharp is a cross-platform 2D graphics API for .NET platforms based on Google's Skia Graphics Library. It provides a comprehensive 2D API that can be used across mobile, server and desktop models to render images.
MattParkerDev/SharpIDE
A modern, cross platform IDE for .NET, built with .NET & Godot
dotnet/samples
Sample code referenced by the .NET documentation
fullstackhero/blazor-starter-kit
Clean Architecture Template for Blazor WebAssembly Built with MudBlazor Components.
ErsatzTV/legacy
Open-source platform that transforms your personal media library into live, custom TV channels.
Nethereum/Nethereum
Ethereum .Net cross platform integration library
enkodellc/blazorboilerplate
Blazor Boilerplate / Starter Template with MudBlazor
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
abpframework/abp-samples
Sample solutions built with the ABP Framework
DragoQCC/CrucibleC2
A C# Command & Control framework
TheAxelander/OpenBudgeteer
OpenBudgeteer is a budgeting app based on the Bucket Budgeting Principle
Azure-Samples/azure-search-openai-demo-csharp
A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
gustavnavar/Grid.Blazor
Grid component with CRUD for Blazor (client-side and server-side) and ASP.NET Core MVC
supabase-community/supabase-csharp
A C# Client library for Supabase
NikiforovAll/keycloak-authorization-services-dotnet
Authentication and Authorization with Keycloak and ASP.NET Core πŸ”
RatScanner/RatScanner
Rat Scanner a helpful tool for Escape from Tarkov.
Version Downloads Last Updated
9.5.0 200,279 5/26/2026
9.4.0 517,198 4/22/2026
9.3.0 263,012 4/8/2026
9.2.0 310,341 3/18/2026
9.1.0 377,006 3/3/2026
9.0.0 413,949 2/19/2026
9.0.0-rc.1 24,422 2/11/2026
9.0.0-preview.2 14,829 1/14/2026
9.0.0-preview.1 11,110 12/20/2025
8.15.0 2,048,370 11/23/2025
8.14.0 405,416 11/5/2025
8.13.0 682,812 10/1/2025
8.12.0 796,157 9/2/2025
8.11.0 741,511 8/4/2025
8.10.0 288,770 7/19/2025
8.9.0 372,344 7/1/2025
8.8.0 276,763 6/17/2025
8.7.0 521,929 5/30/2025
8.6.0 740,183 4/29/2025
8.5.1 498,419 3/31/2025
Loading failed