Evan Almloff

Results 533 comments of Evan Almloff

I don't think Dioxus should change this behavior. It may not be ideal for some apps, but it is the default behavior in the browser and most frameworks. Keeping behavior...

This behavior is the same for any component that accepts props. The component reruns with the new props instead of resetting the state. I don't think resetting all router component...

This was discussed some more on the discord. `use_branched_signal` looses information when you update the signal manually. It is a bit too complex for dioxus to adopt in the core...

(This was answered on the discord yesterday) You can use [gloo_worker](https://docs.rs/gloo-worker/latest/gloo_worker/) > I want to transfer canvas created by Dioxus to worker, how could i do it? You will need...

An example of web workers would be great to add to the [cookbook](https://dioxuslabs.com/learn/0.4/cookbook)! There isn't too much that is specific to Dioxus here, but it is a fairly common library....

I haven't updated it in a while, but I made a nightly build CI for dioxus builds in floneum a while ago that might be useful as a starting point:...

We keep the wasm bindgen version unlocked so that it updates to match other dependencies in the ecosystem that pull in the latest version of wasm bindgen like web-sys. You...

`dx serve` and `dx build` are kind of confusing for static site generation. Currently build is set up to build the wasm and static site generation binary, but not run...

I think this is a bug in hot reloading. The code snippet you posted does work in release mode

> Should this issue be considered adding to the 0.6 release/milestone? > Given that panics could happens in other deps and potentially uncontrolled, it is very easy to crash the...