4/8/2026 at 5:27:17 PM
While I love seeing many alternatives regarding UI frameworks, I'd love to see one general purpose "market leader".I love `iced` for its simplicity and flexibility, but unfortunately there is no official software renderer, which makes it impossible to use for my little embedded side project.
`Slint` is also usable, however I'm not sure about the licensing approach that makes you pay for non open source projects (which is totally understandable, but somehow this feels like a no-go for the "leading" UI framework). The Slint UI DSL feels very good at first, but the more you use it, the more you run into limitations like missing async support for callbacks, the lack of importing structs from Rust into and export UI structs to Rust, etc. However, it at least supports a software renderer and framebuffer.
Is there any other lightweight UI Framework supporting software-rendering and framebuffer for embedded devices (RISC-V 64bit musl, LicheeRV Nano)?
by sandreas
4/8/2026 at 6:05:31 PM
Isn't pure CPU rendering possible in iced with the tiny-skia backend?by FrankenApps
4/8/2026 at 6:11:36 PM
Maybe... Is this framebuffer? My platform is pretty unusual (riscv64-musl), so I was pretty happy when something was working.If your interested, it is a portable audio player with the size of the iPod Nano 7g:
by sandreas
4/8/2026 at 7:17:04 PM
You might need to modify it slightly to get it to render to the right location, but it's a pure software renderer. You could ask in the Iced zulip https://iced.zulipchat.com/by nicoburns