DEV Community

Discussion on: Which Rust crate to use as GUI framework right now (Jan 2021)?

Collapse
 
gauthamkrishna9991 profile image
Goutham Krishna • Edited

As far as I've seen, only gtk-rs (for GTK 3/4) seems to be the most mature among these which I've seen to be used frequently, but that still calls C APIs using some custom introspection library or something, and still doesn't use pure "rusty" code for writing programs, thus also feels less rust-native when you write programs with it.

EDIT: vgtk sems to be a pretty cool project which does use a lot more declarative design compared to gtk-rs, I think I might check that out for myself.