Evan Almloff
Evan Almloff
## Specific Demand Many desktop and liveview applications need to handle communicating with other threads. We should provide a recommended way to handle communicating with other threads. This would replace...
## Specific Demand It would be nice to provide a common way to read different reactive signal-like values. The common interface should support Signals, Fermi atoms, reactive collections (a signal...
**Problem** Running this program fails to hydrate: ```rust #![allow(non_snake_case, unused)] use dioxus::prelude::*; use dioxus_fullstack::{ launch::{self, LaunchBuilder}, prelude::*, }; fn app(cx: Scope) -> Element { let future = use_future(cx, (), |_|...
## Specific Demand You should be able to declare your desktop/mobile menu with components instead of using the config builder. ## Implement Suggestion You can use components with the desktop...
### Discussed in https://github.com/DioxusLabs/dioxus/discussions/947 Originally posted by **pickfire** April 9, 2023 I noticed if I did not specify `wasm32-unknown-unknown` and I use `dioxus serve --hot-reload` with `rust-analyzer` running in the...
## Specific Demand It should be possible to launch a dioxus app on multiple platforms without a bunch of optional dependancies and config flags ## Implement Suggestion We could create...
This PR adds support for Islands to dioxus fullstack. Islands let you only include and hydrate some interactive components in your final binary which can help shrink the bundle size...
## Specific Demand Different platforms deal with creating dynamic assets differently. Dioxus should provide a way to create a dynamic asset (like a generated image) that works on any platform....
## Specific Demand The broader Dioxus ecosystem should contain an animation library like [react-sping](https://www.react-spring.dev/) ## Implement Suggestion We can implement animations with hooks and use the API introduced in https://github.com/DioxusLabs/dioxus/issues/1179#issuecomment-1672184361...
## Specific Demand Currently it is impossible to set a [property](https://open-wc.org/guides/knowledge/attributes-and-properties/#properties) on a web component in dioxus. You are forced to use inner_html for that element and all children instead...