You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This crate and relm seem pretty similar on a first glance—they're both GUI libraries with a "modern" Elm/React-style API. It'd be nice if there was some documentation somewhere describing the differences and pros/cons of each.
Some preliminary notes from a quick look at each crate:
vgtk uses an HTML-like syntax for defining UIs, while relm's syntax looks more like normal Rust. (Both syntaxes are implemented as macros usable from within normal Rust files.)
vgtk uses a Virtual DOM-style approach, while relm works by inserting code to update the UI after state updates at compile time. The tradeoff here seems to be that relm's approach is more efficient, but vgtk's has fewer gotchas.
relm is more popular and more actively maintained.
The text was updated successfully, but these errors were encountered:
This crate and relm seem pretty similar on a first glance—they're both GUI libraries with a "modern" Elm/React-style API. It'd be nice if there was some documentation somewhere describing the differences and pros/cons of each.
Some preliminary notes from a quick look at each crate:
The text was updated successfully, but these errors were encountered: