Blazorise.LoadingIndicator 2.0.0-preview2

Prefix Reserved
This is a prerelease version of Blazorise.LoadingIndicator.
dotnet add package Blazorise.LoadingIndicator --version 2.0.0-preview2
                    
NuGet\Install-Package Blazorise.LoadingIndicator -Version 2.0.0-preview2
                    
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="Blazorise.LoadingIndicator" Version="2.0.0-preview2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Blazorise.LoadingIndicator" Version="2.0.0-preview2" />
                    
Directory.Packages.props
<PackageReference Include="Blazorise.LoadingIndicator" />
                    
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 Blazorise.LoadingIndicator --version 2.0.0-preview2
                    
#r "nuget: Blazorise.LoadingIndicator, 2.0.0-preview2"
                    
#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 Blazorise.LoadingIndicator@2.0.0-preview2
                    
#: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=Blazorise.LoadingIndicator&version=2.0.0-preview2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Blazorise.LoadingIndicator&version=2.0.0-preview2&prerelease
                    
Install as a Cake Tool

Blazorise

Blazorise: Blazor UI Components for .NET

NuGet Nuget Discord License

Blazorise is an open-source Blazor UI component library for building modern .NET web apps in C#. It provides a consistent component API across popular CSS frameworks, so you can build with Bootstrap 5, Tailwind CSS, Bulma, Material, AntDesign, or Fluent UI 2 without rewriting your app. Blazorise works with Blazor WebAssembly and Blazor Server, and supports theming, layouts, forms, and rich UI components.

Highlights

  • Provider-agnostic components with multiple CSS framework providers.
  • C#-first development with a consistent API across providers.
  • Works in Blazor WebAssembly and Blazor Server apps.
  • Optional commercial themes, blocks, and priority support.

Commercial licensing

Blazorise is dual-licensed. Use is governed by the terms in LICENSE.md or a commercial license, depending on your scenario. For teams that need premium assets and support, commercial subscriptions are available.

Commercial subscriptions include:

* Some features may be exclusive to specific subscription tiers.

Supporting Blazorise

Blazorise is an open source project with its ongoing development made possible entirely by the support of these awesome backers.

Special Partners

<table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://volosoft.com/" target="_blank"> <img width="222px" src="https://volosoft.com/assets/logos/volosoft-logo-dark.svg"> </a> </td> <td align="center" valign="middle"> <a href="https://www.pebble.tv/" target="_blank"> <img width="222px" src="https://www.pebble.tv/wp-content/uploads/2020/10/logo.svg"> </a> </td> </tr> <tr></tr> </tbody> </table>

Demos

Blazor WebAssembly

Blazor Server

Documentation

For full documentation, component API references, and detailed guides, visit the Blazorise official documentation pages.

Continue reading below for a quick start guide.

Installation

Prerequisites

Before you continue, make sure you have a recent .NET SDK and a supported IDE (Visual Studio or VS Code). Visit the official Blazor site to learn more.

Provider packages

There are currently 7 provider packages, one per supported CSS framework.

Available Blazorise packages are:

- Blazorise.Tailwind
- Blazorise.Bootstrap
- Blazorise.Bootstrap5
- Blazorise.Bulma
- Blazorise.Material
- Blazorise.AntDesign
- Blazorise.FluentUI2

This guide shows how to set up Blazorise with Bootstrap 5 and FontAwesome 6 icons. To set up Blazorise for other CSS frameworks, refer to the Usage page in the documentation.

1. NuGet packages

Install a provider package and any icon package you want to use. Example for Bootstrap 5 and FontAwesome:

dotnet add package Blazorise.Bootstrap5

And FontAwesome icon package:

dotnet add package Blazorise.Icons.FontAwesome

2. Source files

Add the following to index.html (Blazor WebAssembly), _Host.cshtml (Blazor Server), or App.razor (.NET 8+ Blazor Web App) in the head section.

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="_content/Blazorise.Icons.FontAwesome/v6/css/all.min.css" rel="stylesheet">

<link href="_content/Blazorise/blazorise.css?v=2.0.0.0" rel="stylesheet" />
<link href="_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css?v=2.0.0.0" rel="stylesheet" />

The ?v=2.0.0.0 query string matches the current Blazorise package version (2.0.0) and is used for cache busting. Update it whenever you upgrade Blazorise packages. If you use a different provider, swap the Bootstrap CSS and provider-specific Blazorise CSS file accordingly.

2.1 JavaScript resources

Blazorise loads any additional JavaScript it needs dynamically once a component needs it. Make sure the resources are available and served relative to the app root. For Blazor Server, enable static files with app.UseStaticFiles();.

If you're having any difficulties, please refer to the following issues:

We are also aware that there might need to be extra setup when dealing with PWA and offline capabilities if you want your app to remain responsive. Please check our PWA docs for more information.

3. Usings

In your main _Imports.razor, add:

@using Blazorise

4. Service registration

Add the following lines to the relevant sections of Program.cs.

using Blazorise;
using Blazorise.Bootstrap5;
using Blazorise.Icons.FontAwesome;
builder.Services
  .AddBlazorise()
  .AddBootstrap5Providers()
  .AddFontAwesomeIcons();

Examples

Counter page

@page "/counter"

<Heading Size="HeadingSize.Is1">Counter</Heading>

<Paragraph>Current count: @currentCount</Paragraph>

<Button Color="Color.Primary" Clicked="IncrementCount">Click me</Button>

@code {
    private int currentCount;

    private void IncrementCount()
    {
        currentCount++;
    }
}

Simple form

@page "/profile"

<Heading Size="HeadingSize.Is3">Profile</Heading>

<TextInput @bind-Value="displayName" Placeholder="Ada Lovelace" />

<Button Color="Color.Primary" Clicked="Save">Save</Button>

<Alert Color="Color.Success" Visible="isSaved">
    Saved!
</Alert>

@code {
    private string displayName = string.Empty;
    private bool isSaved;

    private void Save()
    {
        isSaved = true;
    }
}

Development builds

We release a development version of Blazorise on a regular basis. This version is available on the MyGet feed. This release is not recommended for production use, but it's a great way to test the latest features and bug fixes and give us feedback ahead of the next release.

Contributing

We welcome contributions and any suggestions or feature requests you might have. Contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. This will be signed once you submit a PullRequest on our repository. For details about our CLA, please visit: Contributor License Agreement.

For our code conventions and guidelines please visit: Contributing Guide

Copyright (c) Megabit d.o.o.

Dual-licensed. See LICENSE.md.

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

Showing the top 5 NuGet packages that depend on Blazorise.LoadingIndicator:

Package Downloads
Ngs.Client.Ui

Package Description

Ngs.Tests.Common

Package Description

VEFramework.VEBlazor

.NET Blazor component and dApp template library. It contains lots of components related to blockchain, IPFS, NFTs and other web3 and Industry4.0 technologies.

CruderSimple.Blazor

Package Description

JS.Abp.OpenAI.Blazor

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0-preview2 53 1/26/2026
2.0.0-preview1 85 1/16/2026
1.8.9 356 1/16/2026
1.8.8 1,662 12/10/2025
1.8.7 5,929 11/20/2025
1.8.6 985 11/12/2025
1.8.5 1,582 10/14/2025
1.8.4 1,627 10/8/2025
1.8.3 1,591 9/22/2025
1.8.2 1,116 9/11/2025
1.8.1 5,295 8/19/2025
1.8.0 7,417 7/7/2025
1.7.7 6,351 6/3/2025
1.7.6 8,368 4/18/2025
1.7.5 10,220 2/28/2025
1.7.4 3,783 2/4/2025
1.7.3 6,955 1/17/2025
1.7.2 2,265 12/30/2024
1.7.1 2,973 12/10/2024
1.7.0 14,059 11/15/2024
1.7.0-preview1 184 10/24/2024
1.6.2 14,592 10/15/2024
1.6.1 11,299 8/22/2024
1.6.0 4,602 7/23/2024
1.5.3 9,569 6/3/2024
1.5.2 26,549 4/22/2024
1.5.1 18,681 3/27/2024
1.5.0 1,971 3/18/2024
1.5.0-preview2 231 3/8/2024
1.5.0-preview1 360 2/9/2024
1.4.3 2,388 3/13/2024
1.4.2 15,808 1/29/2024
1.4.1 5,741 1/16/2024
1.4.0 12,601 12/8/2023
1.3.4 4,251 12/18/2023
1.3.3 4,762 11/15/2023
1.3.2 6,033 10/19/2023
1.3.1 19,020 8/18/2023
1.3.0 1,386 8/16/2023
1.3.0-preview1 422 8/9/2023
1.2.5 5,702 8/8/2023
1.2.4 16,346 6/14/2023
1.2.3 11,948 5/3/2023
1.2.2 9,560 3/20/2023
1.2.1 4,152 2/21/2023
1.2.0 9,486 2/1/2023
1.2.0-preview2 445 1/26/2023
1.2.0-preview1 423 1/26/2023
1.1.7 1,106 2/3/2023
1.1.6 5,177 1/17/2023
1.1.5 6,277 12/13/2022
1.1.4.1 2,606 11/24/2022
1.1.4 599 11/24/2022
1.1.3.1 2,603 11/8/2022
1.1.3 702 11/8/2022
1.1.2 2,719 10/19/2022
1.1.1 5,128 9/30/2022
1.1.0 691 9/27/2022
1.1.0-rc1 272 9/22/2022