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
Hi! There is currently DynamicSlot which serves the purpose of rendering changing futures. But it's API is imperative rather than stream-based like what you suggested. In fact, most of async_ui right now is quite imperative.
I want to build a crate of functional and/or stream-based helpers for async_ui - with enough functionality so that one can, say, make a todo list app without imperative manipulation. This crate will definitely include the component you have here. But since I haven't used futures-signals that much myself yet, I am not sure what other functionalities should the crate provide. If you have more component implementations/suggestions, please share them!
I haven't used async_ui lately so I can't think of something right now. But is async_ui even the best way to show UI? It is fun to code with, but I'm not sure about the performance or ability to do more complex things like canvas games.
Re best way: async_ui is very likely not the best tool for canvas games (anything canvas should be done in immediate mode IMO). If we try to use it for canvas rendering anyway, I think the API would be cumbersome but performance shouldn't be too bad.
I made this helper function to easily show certain elements based on the value of a signal using
futures-signals
.It can be used like this:
Should this helper function be added to this library?
The text was updated successfully, but these errors were encountered: