Sharpnado.TaskLoaderView
Sharpnado.TaskLoaderView copied to clipboard
Host builder extension for maui
It would be nice to follow the initialization pattern that maui, other .net bits and other sharpnado libs use to register this.
Something along the lines of:
public static MauiAppBuilder UseSharpnadoTaskLoaderView(this MauiAppBuilder builder, bool loggerEnable)
{
Sharpnado.TaskLoaderView.Initializer.Initialize(loggerEnable);
return builder;
}
I know its a bit pedantic, but it keeps inline with how everything else gets initialized in our apps! 😊