Tim Miller

Results 246 comments of Tim Miller

Avalonia.Native's deploy target is [10.12](https://github.com/AvaloniaUI/Avalonia/blob/master/native/Avalonia.Native/src/OSX/Avalonia.Native.OSX.xcodeproj/project.pbxproj#L461), and those materials are in [10.14+](https://developer.apple.com/documentation/appkit/nsvisualeffectview/material-swift.enum/underwindowbackground). Changing it to use `[_blurBehind setMaterial:NSVisualEffectMaterialUnderWindowBackground];` should be trivial once bumped, but that has implications depending on the actual...

@CeSun If you step through that method normally, what is the `colorType` value normally getting before you reset it to ```csharp if (OperatingSystemEx.IsLinux()) { colorType = SKColorType.Rgba8888; } ``` The...

Your repository doesn't contain code, just a readme. Were you intending to commit a sample? Also going through the linked similar issues, you could be seeing https://github.com/dotnet/maui/issues/8486, it may be...

The Dependency Injection being used here is [Microsoft.Extensions.DependencyInjection](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection). MAUI, AFAIK, doesn't influence this nor rolls its own. How are you navigating pages? Are you using Shell?

Another wrinkle is that net9.0+ removes the `EnableUnsafeBinaryFormatterSerialization` workaround, so when Avalonia bumps to the next LTS, this code will fail to compile outright. We would either need to bring...

Can you please create a repro project that shows the HTML you're trying to render?