Rogier van der Hee
Rogier van der Hee
I'm trying out the new experimental package (to circumvent firewalls blocking dlls) to [customize the blazor webassembly loading process](https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly-deployment-layout?view=aspnetcore-6.0#customize-the-blazor-webassembly-loading-process-via-a-nuget-package). I have multiple hosted apps and use the `StaticWebAssetBasePath` project property...
When trying to display a bitmap, I achieved considerably better display quality by using the `canvas.DrawBitmap(webBitmap, x, y, paint);` override with passing a SKPaint object in and setting a FilterQuality...
The sample for BlazorWebAssemblyCustomInitialization does not compile out of the box, it is missing a using. Not sure if it's global yet, but why not?
One of the more tedious tasks in building any app is of course the endless cycle of tinkering for the correct shade of grey for that input border. Scoped CSS...
### Describe the bug While working on my program I was working on modifying some blazor components, nothing fancy: just copying a blazor component, modifying the name, changeing the type...