Toolbelt.Blazor.LoadingBar 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Toolbelt.Blazor.LoadingBar --version 1.0.0
NuGet\Install-Package Toolbelt.Blazor.LoadingBar -Version 1.0.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="Toolbelt.Blazor.LoadingBar" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Toolbelt.Blazor.LoadingBar --version 1.0.0
#r "nuget: Toolbelt.Blazor.LoadingBar, 1.0.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.
// Install Toolbelt.Blazor.LoadingBar as a Cake Addin
#addin nuget:?package=Toolbelt.Blazor.LoadingBar&version=1.0.0

// Install Toolbelt.Blazor.LoadingBar as a Cake Tool
#tool nuget:?package=Toolbelt.Blazor.LoadingBar&version=1.0.0

Blazor LoadingBar NuGet Package

Summary

This is a class library that inserts loading bar UI automatically into a client side Blazor application.

movie.1

This is a porting from angular-loading-bar (except spinner UI).

How to install and use?

Step.1 Install the library via NuGet package, like this.

> dotnet install Toolbelt.Blazor.LoadingBar

Step.2 Register "LoadingBar" service into the DI container, at ConfigureService method in the Startup class of your Blazor application.

public void ConfigureServices(IServiceCollection services)
{
  services.AddLoadingBar(); // <- Add this line.
  ...

Step.3 Install "LoadingBar" service to loading bar UI works well, at Configure method in the Startup class of your Blazor application.

public void Configure(IBlazorApplicationBuilder app)
{
  app.UseLoadingBar(); // <- Add this line.
  ...

That's all.

After doing those 3 step, you can see a loading bar effect on your Blazor application UI, during HttpClient request going on.

Credits

Credit goes to chieffancypants for his great works angular-loading-bar.

This library includes many codes, style sheet definition, and algorithms derived from angular-loading-bar.

License

Mozilla Public License Version 2.0

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Toolbelt.Blazor.LoadingBar:

Package Downloads
Corsinvest.AppHero.Core.MudBlazorUI

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Toolbelt.Blazor.LoadingBar:

Repository Stars
enkodellc/blazorboilerplate
Blazor Boilerplate / Starter Template with MudBlazor
jsakamoto/Toolbelt.Blazor.LoadingBar
Loading bar UI for Client-Side Blazor application.
jasontaylordev/ModernWebDevWithBlazorWasm
The sample code from my presentation Modern Web Dev with Blazor WebAsembly and ASP.NET Core 6.
Version Downloads Last updated
14.0.0 13,401 8/26/2023
13.2.0 10,680 5/13/2023
13.1.2 74,455 11/19/2021
13.1.1 5,675 9/17/2021
13.1.0-preview.1.0 243 9/12/2021
13.0.0 1,795 9/8/2021
12.1.0 32,698 11/27/2020
12.0.1 10,140 7/22/2020
12.0.0 9,942 4/25/2020
11.0.0.1 3,171 3/12/2020
10.0.0 11,826 1/29/2020
9.0.0.3 1,882 1/12/2020
8.0.0 2,284 11/20/2019
7.0.0 2,915 9/5/2019
6.0.0 1,416 6/14/2019
5.0.0 1,211 4/26/2019
4.0.0 1,051 3/9/2019
3.0.0 1,091 2/8/2019
2.1.0 1,850 10/3/2018
2.0.0 1,207 9/21/2018
1.0.0 1,304 9/15/2018

v.1.0.0
- 1st release.