Stephen Monaco

Results 73 comments of Stephen Monaco

I don't know why the exception isn't happening on your environment (I'm on Windows), but I don't think it's related to Avalonia.

Avalonia was maintaining two sets of project templates (AvaloniaVS and avalonia-dotnet-templates) for awhile which resulted in extra work. Now the VS extension seems to only use avalonia-dotnet-templates (which can also...

The VS templates only work in VS whereas Rider and CLI also use the `dotnet new` templates.

@IanRawley Changing from `char` to `Key` would require a breaking change in `AccessText.AccessKey`, at least for consistency: https://github.com/AvaloniaUI/Avalonia/blob/143399f65abc8b97b479b1f8ed9d74b1a6a65303/src/Avalonia.Controls/Primitives/AccessText.cs#L45-L49 The i18n is probably an issue, too, as you pointed out.

This has been more complicated than expected. I've implemented the feature locally (for static fields so far) and I've come across two problems: 1. trying to test by adding another...

SkiaSharp 3 has been supported as opt-in for at least half a year now. You must ensure that you also include the correct native assets for the platorm. ie. `SkiaSharp.NativeAssets.iOS`.

I can't really tell any smoothness difference here during intense animation (dealing). The Solitaire app itself doesn't have much in the form of interactive UI elements (eg. even the buttons...

I'm working on my own MT WASM app and came across this again. Single thread worked fine, MT would pause about a full second before a pointerover color change started....

Please create and post a minimal repro for this so the team can understand your approach and immediately reproduce your result. You may also want to test under a nightly...

I tried this when it was posted. The approach was a bit janky and I reproduced the result with your repro, but I couldn't fix it. There was a lot...