NetcodeHub.Packages.Components.ScreenLoader
1.0.1
dotnet add package NetcodeHub.Packages.Components.ScreenLoader --version 1.0.1
NuGet\Install-Package NetcodeHub.Packages.Components.ScreenLoader -Version 1.0.1
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="NetcodeHub.Packages.Components.ScreenLoader" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetcodeHub.Packages.Components.ScreenLoader --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NetcodeHub.Packages.Components.ScreenLoader, 1.0.1"
#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 NetcodeHub.Packages.Components.ScreenLoader as a Cake Addin #addin nuget:?package=NetcodeHub.Packages.Components.ScreenLoader&version=1.0.1 // Install NetcodeHub.Packages.Components.ScreenLoader as a Cake Tool #tool nuget:?package=NetcodeHub.Packages.Components.ScreenLoader&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Install the package
NetcodeHub.Packages.Components.ScreenLoader
Use the component
@using NetcodeHub.Packages.Components.ScreenLoader
<NetcodeHubScreenLoader Show="@ShowLoader" />
@code {
bool ShowLoader = false;
public async void OnSignInClicked()
{
ShowLoader = !ShowLoader;
await Task.Delay(5000);
Navigation.NavigateTo("/Dashboard");
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Microsoft.AspNetCore.Components.Web (>= 9.0.0)
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.1 | 97 | 2/12/2025 |
Implemented a full-page loading overlay with configurable visibility.
Added CSS animations for smooth fade-in effects.
Enabled parameter-based control (Show property) for seamless integration.
Ensured high performance with minimal CSS and Blazor overhead