Description
We have a Blazor Web App with global InteractiveWebAssembly with no prerender. We want to implement our own custom loading progress indicator.
The documenation for a custom loading progress indicator does not demonstrate an example where the Blazor project is a Blazor Web App with global @rendermode="new InteractiveWebAssemblyRenderMode(prerender: false)"
.
It seems to assume either:
Blazor Web App with per page/component interactivity. Here it demonstrates that the LoadingProgress
should be added to each page that adopts @rendermode InteractiveWebAssembly
. This approach is superflous since we are using global InteractiveWebAssembly.
or
Blazor WebAssembly Standalone which is not applicable for our project.
How can we implement a custom loading progress indicator for global InteractiveWebAssembly with no prerender?