Sharpnado.TaskLoaderView icon indicating copy to clipboard operation
Sharpnado.TaskLoaderView copied to clipboard

Host builder extension for maui

Open Axemasta opened this issue 7 months ago • 1 comments

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! 😊

Axemasta avatar Jul 24 '24 13:07 Axemasta