MAUI Avalonia Preview 1 - Avalonia UI

Announcing the first release of Avalonia MAUI

I wish they support Linux wholeheartedly, a lot of toolkits and GUI frameworks do it by half-assing things, mostly because Wayland is difficult to understand.

In Wayland you have multiple ways to render windows, not just the XDG top level window. It works via surfaces, and here is a list I've discovered so far:

- XDG Top Level Window
- Child Window
- Popup Surface
- Layer surface (like task-bars, shell overlays)
- Subsurface (region in another surface)
- IME Panel Surface (surface that follows text cursor)

There probably is others too.

It is diffifcult to find high-level toolkits that support all of the above.

Not to mention that there's no clear documentation for this anywhere. A while ago I was attempting to debug some Wayland-specific issues with a graphics library, it turns out the issue was that the little documentation there was, was wrong about what is and isn't nullable.

I found https://wayland.app/protocols/ very helpful so far.

That and studying smithay code.

Wayland Protocol Documentation | Wayland Explorer

A better way to read Wayland documentation

That was the documentation with the incorrect nullability I was referencing.