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
{{ message }}
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
Seeing as dodrio is now archived (and presumably unmaintained), what does the future of iced on the web look like?
Perhaps these crates are worth looking into if we don't want to maintain dodrio? Migrating to them may also improve performance, since they avoid using a VDOM.
After implemeting this, I'm also very interested in implementing optimized DOM updates similar style to Yew framework (update DOM partially instead of full page).
If someone is also interested in that work, please let me know.
As far as I can see, both sycamore and dominator rely on a persistent widget tree and use either a DSL or specific widget functionality to implement dynamic views without a VDOM.
These approaches are, at least for now, incompatible with iced because the Elm Architecture produces a different widget tree after every view.
Therefore, if we want to preserve the ergonomics of the current API (i.e. view logic is just Rust code), I believe a library with a VDOM will be necessary.
Seeing as
dodrio
is now archived (and presumably unmaintained), what does the future oficed
on the web look like?Perhaps these crates are worth looking into if we don't want to maintain
dodrio
? Migrating to them may also improve performance, since they avoid using a VDOM.sycamore
dominator
The text was updated successfully, but these errors were encountered: