Dave Quick

Results 2 comments of Dave Quick

This works fine on Xamain.Forms. I have an example project that includes the code you see here and would be happy to upload it here.

Just found the answer to my immediate problem. In MauiProgram.cs add .UseSkiaSharp() to the builder like this: builder ``` .UseMauiApp() .UseSkiaSharp(true) .ConfigureFonts(fonts => ... ``` and add namespace 'SkiaSharp.Views.Maui.Controls.Hosting': `using...