Skip to content

Files

Latest commit

abd5ac4 · Jul 27, 2022

History

History
This branch is 11 commits behind linkdotnet/BlogExamples:main.

BlazorClientLoadingScreen

Blazor Client - Loading Screen

If you are using Blazor WebAssembly aka client-side Blazor you are faced with an issue: The .NET runtime including your assemblies has to be downloaded first. We are taking about some megabytes as the initial load.

Depending on the connection of your client there is a time where basically nothing happens. The default template just has a simple "Loading..." text. So let's change that.

Found here