MudBlazor.ThemeManager
1.1.0
Prefix Reserved
See the version list below for details.
dotnet add package MudBlazor.ThemeManager --version 1.1.0
NuGet\Install-Package MudBlazor.ThemeManager -Version 1.1.0
<PackageReference Include="MudBlazor.ThemeManager" Version="1.1.0" />
paket add MudBlazor.ThemeManager --version 1.1.0
#r "nuget: MudBlazor.ThemeManager, 1.1.0"
// Install MudBlazor.ThemeManager as a Cake Addin #addin nuget:?package=MudBlazor.ThemeManager&version=1.1.0 // Install MudBlazor.ThemeManager as a Cake Tool #tool nuget:?package=MudBlazor.ThemeManager&version=1.1.0
Theme Manager / Generator for MudBlazor
Blazor Theme Manager component for MudBlazor library. Can be used live or during development to fast and easy try out different theme settings.
This component is not suitable for prod applications, be ready for performance issues, bugs and missing features. Feel free to help improve it.
Workflow
Prerequisites
- MudBlazor Installed and configurated.
Installation
Install Package
dotnet add package MudBlazor.ThemeManager
Add the following to _Imports.razor
@using MudBlazor.ThemeManager
Add the following to index.html
(client-side) or _Host.cshtml
(server-side) in the head
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor.ThemeManager/MudBlazorThemeManager.css" rel="stylesheet" />
Add the components in your MainLayout.razor
and inside <MudLayout>
<MudThemeManagerButton OnClick="@((e) => OpenThemeManager(true))" />
<MudThemeManager Open="_themeManagerOpen" OpenChanged="OpenThemeManager" Theme="_themeManager" ThemeChanged="UpdateTheme" />
Add the following inside your @code for MainLayout.razor
private ThemeManagerTheme _themeManager = new ThemeManagerTheme();
public bool _themeManagerOpen = false;
void OpenThemeManager(bool value)
{
_themeManagerOpen = value;
}
void UpdateTheme(ThemeManagerTheme value)
{
_themeManager = value;
StateHasChanged();
}
protected override void OnInitialized()
{
StateHasChanged();
}
Connect the ThemeManagerTheme with MudThemeProvider
to control all the theme colors. You can also connect MudAppBar
and MudDrawer
directly.
<MudThemeProvider Theme="_themeManager.Theme" />
<MudAppBar Elevation="_themeManager.AppBarElevation">
<MudDrawer @bind-Open="_drawerOpen" ClipMode="_themeManager.DrawerClipMode" Elevation="_themeManager.DrawerElevation">
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Components.Web (>= 6.0.16)
- MudBlazor (>= 6.2.3)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on MudBlazor.ThemeManager:
Package | Downloads |
---|---|
FenixAlliance.ACL.Dependencies
Application Component for the Alliance Business Suite. |
|
Indiko.Blocks.Widget.UI.Abstractions
Building Blocks Widget UI Abstractions |
|
Occasus.BlazorUI
Allows for custom IOption sources, with an interface to edit the settings |
|
Sufficit.Blazor.Client
Package Description |
|
BeamOS.WebApp
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.0 | 13,757 | 9/19/2024 |
2.0.0 | 21,294 | 7/1/2024 |
1.1.0 | 18,012 | 6/5/2024 |
1.0.9 | 37,585 | 3/19/2024 |
1.0.8 | 149,536 | 5/15/2023 |
1.0.7 | 219,357 | 7/27/2022 |
1.0.6 | 571,681 | 2/10/2022 |
1.0.5 | 74,300 | 8/10/2021 |
1.0.4 | 1,091 | 8/10/2021 |
1.0.3 | 9,722 | 6/24/2021 |
1.0.2 | 9,011 | 3/8/2021 |
1.0.1 | 3,490 | 3/2/2021 |
1.0.0 | 1,291 | 3/2/2021 |