Today in "HN never used a reactive framework that is not React and is offended when UI is not written with Dear ImGui".<p>This is literally the exact style of SwiftUI and Jetpack Compose (down to the author having used the term fragment, I sure hope this isn't leftover trauma from being an Android developer), except written in Rust (hence having to deal with lifetimes in the middle, default parameters, lambdas being quite verbose and needing to move things, etc).<p>Not blocking the UI thread is mandatory if you ever want to make any kind of complex UI. If you're a web dev, well you only have one thread anyways, good luck, if you're on any other platform, interactions _cannot_ ever block the UI (unless you, yourself, update the UI to say it is blocked). Making this async is a good thing.<p>Stack traces are a problem, but then again they've been a problem in any remotely capable UI toolkit.<p>With ReactiveCell, it looks surprisingly similar to what Compose does, where modifying a State<T> causes recomposition of everything observing it. Which means that it might be powerful enough one day to do the same things as Molecule (<a href="https://github.com/cashapp/molecule" rel="nofollow">https://github.com/cashapp/molecule</a>), or ComposePPT (<a href="https://github.com/fgiris/composePPT" rel="nofollow">https://github.com/fgiris/composePPT</a>), where everything is a potential target and it interops really well with existing toolkits.