Evan Almloff
Evan Almloff
What is `execute_js`?
You can't use hooks inside of event handlers, or any code that runs conditionally. It violates the [rules of hooks](https://dioxuslabs.com/learn/0.4/reference/hooks#rules-of-hooks)
calling `.value()` on a future will get the current value of the future. I think in `0.4.1`, futures are not polled until the end of the render, so it will...
Exactly, if you need to target anything more than web, the API needs to be async which means the use_future will be `None` before it is resolved
This is expected behavior. VNodes currently [implement partialeq by pointer](https://github.com/DioxusLabs/dioxus/blob/master/packages/core/src/nodes.rs#L151). They could implement a deeper partialEq if the pointers are different, but the current behavior is pretty similar to what...
This is also broken on the web renderer if the event originates from an element within the form instead of the form: ```rust //! Forms //! //! Dioxus forms deviate...
Dioxus already uses [prettyplease](https://github.com/dtolnay/prettyplease) to format code within rsx. rustfmt and prettyplease act similarly, but they are not identical. Formatting code outside of rsx with rustfmt instead of prettyplease may...
You can have a different variant name and component name with this syntax `#[route("path", ComponentName)]`. That is currently only documented [in the rust docs](https://docs.rs/dioxus-router/latest/dioxus_router/prelude/derive.Routable.html#routepath-component), but we could also document that...
> It's easy to build static sites and CSR with Dioxus and have it built ready to go on multiple platforms including Cloudflare Pages, however this is not easily possible...
> Perhaps this could be a plugin instead of a direct part of the CLI? It could be a plugin, but you would sacrifice a lot of performance. WASM is...