4 ms·
I've been using slint for a desktop project recently and having a lot of fun with it - it's pretty simple and the design has an interesting and fairly clean sep
by brson 11mo ago
I've been using slint for a desktop project recently and having a lot of fun with it - it's pretty simple and the design has an interesting and fairly clean separation between the UI language and the backing application code (in Rust in my case). Recaptured a bit of my lost love for desktop apps.
- heavyset_go 11mo agoHow's it look and feel integration wise? Are the context menus native? Can you use native menubars? These were a couple of my pain points with QML in the past, although they've been fixed in recent Qt releases. If you have any code you can share, I'd love to see it.
- tronical 11mo agoOn macOS and Windows, the menubar is native. On Windows, context menus are, too. On macOS it‘s a small patch away, we just haven‘t gotten around. (https://github.com/slint-ui/slint/blob/7bb333c77dd477f8625c814be7f5b464bfd6553d/internal/backends/winit/muda.rs#L86 https://github.com/slint-ui/slint/blob/7bb333c77dd477f8625c8... ) Shout out to the muda folks here and big thanks to npwoods :)
- heavyset_go 11mo agoNice, what's the story on Linux support on Wayland and Qt/GTK shells?