Maurosoft.Blazor.Components.Spinner 1.0.7

dotnet add package Maurosoft.Blazor.Components.Spinner --version 1.0.7                
NuGet\Install-Package Maurosoft.Blazor.Components.Spinner -Version 1.0.7                
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="Maurosoft.Blazor.Components.Spinner" Version="1.0.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Maurosoft.Blazor.Components.Spinner --version 1.0.7                
#r "nuget: Maurosoft.Blazor.Components.Spinner, 1.0.7"                
#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 Maurosoft.Blazor.Components.Spinner as a Cake Addin
#addin nuget:?package=Maurosoft.Blazor.Components.Spinner&version=1.0.7

// Install Maurosoft.Blazor.Components.Spinner as a Cake Tool
#tool nuget:?package=Maurosoft.Blazor.Components.Spinner&version=1.0.7                

Blazor Spinner

Blazor Spinner is a beautiful loading spinner that can be included in your Blazor applications.

Blazor Spinner Preview

Blazor Spinner Preview

Live Demo

Features

  • High level of customisation;
  • Over 80 loaders;
  • Pure Css;
  • 3 modes of operation: alone, within an element, page;
  • Independent of the css framework used (Bootstrap or Tailwind)

Usage (with Bootstrap Framework) as Service

  1. Install the library from Nuget: https://www.nuget.org/packages/Maurosoft.Blazor.Components.Spinner/
  2. Add @using Maurosoft.Blazor.Components in your _Imports.razor
  3. Add builder.Services.AddBlazorSpinnerServices(); in your Program.cs file
  4. Add <Spinner IsServiceSpinner="true" SpinnerMode="SpinnerMode.Page" SpinnerLoader="SpinnerLoader.Loader1" Visible="true" /> to your page file
  5. On page you want to call the spinner from, inject the SpinnerService into it: @inject SpinnerService _spinnerService
  6. Call _spinnerService.Show() and _spinnerService.Hide() to "Show" or "Hide" the spinner.

Usage (with Tailwind Framework) as Service

  1. Install the library from Nuget: https://www.nuget.org/packages/Maurosoft.Blazor.Components.Spinner/
  2. Add @using Maurosoft.Blazor.Components in your _Imports.razor
  3. Add builder.Services.AddBlazorTailwindCoreServices(); in your Program.cs file
  4. Add builder.Services.AddBlazorSpinnerServices(); in your Program.cs file
  5. Add <Spinner IsServiceSpinner="true" SpinnerMode="SpinnerMode.Page" SpinnerLoader="SpinnerLoader.Loader1" Visible="true" /> to your page file
  6. On page you want to call the spinner from, inject the SpinnerService into it: @inject SpinnerService _spinnerService
  7. Call _spinnerService.Show() or _spinnerService.Hide() to "Show" or "Hide" the spinner.

Usage (with Bootstrap Framework) inside Page

  1. Install the library from Nuget: https://www.nuget.org/packages/Maurosoft.Blazor.Components.Spinner/
  2. Add @using Maurosoft.Blazor.Components in your _Imports.razor
  3. Add builder.Services.AddBlazorSpinnerServices(); in your Program.cs file
  4. Add component in your page
    ....
    
    <Spinner @ref="Spinner1" SpinnerLoader="SpinnerLoader.Loader1" Visible="false" />
    <button type="button" @onclick="Click">Show</button>
    
    @code {
         Spinner Spinner1 { get; set; } = default!;
    
         private int _delay = 2000;
    
         async void Click()
         {
             await Spinner1.ShowAsync(async (callBackFunctionClose) =>
             {
                 await Task.Delay(_delay); // Simulates a long activity
                 await callBackFunctionClose(); // Invokes the asynchronous closing routine
             });
         }
    }
    

Usage (with Tailwind Framework) inside Page

  1. Install the library from Nuget: https://www.nuget.org/packages/Maurosoft.Blazor.Components.Spinner/
  2. Add @using Maurosoft.Blazor.Components in your _Imports.razor
  3. Add builder.Services.AddBlazorTailwindCoreServices(); in your Program.cs file
  4. Add builder.Services.AddBlazorSpinnerServices(); in your Program.cs file
  5. Add component in your page
    ....
    
    <Spinner @ref="Spinner1" SpinnerLoader="SpinnerLoader.Loader1" Visible="false" />
    <button type="button" @onclick="Click">Show</button>
    
    @code {
         Spinner Spinner1 { get; set; } = default!;
    
         private int _delay = 2000;
    
         async void Click()
         {
             await Spinner1.ShowAsync(async (callBackFunctionClose) =>
             {
                 await Task.Delay(_delay); // Simulates a long activity
                 await callBackFunctionClose(); // Invokes the asynchronous closing routine
             });
         }
    }
    

Requirements

  • .NET 8.0 or .NET 9.0

Contributing

Contributions, bug reports, and feature requests are welcome! To contribute:

  1. Fork the repository.
  2. Create a new branch for your changes.
  3. Submit a pull request for review.

License

Distributed under the MIT License. See the LICENSE file for more details.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 80 12/29/2024
1.0.6 83 12/28/2024
1.0.5 90 11/26/2024
1.0.3 89 11/23/2024
1.0.1 83 11/23/2024