Evan Almloff

Results 533 comments of Evan Almloff

The default platform setting was removed from the `Dioxus.toml`. See https://github.com/DioxusLabs/dioxus/issues/3368 https://github.com/DioxusLabs/docsite/pull/371 removes this field from the docs

> I added the dependencies of the package that caused errors to Cargo.toml. > > Cargo.toml > > ```toml > [package] > name = "dx-fs" > version = "0.1.0" >...

> I've also encountered a similar problem. > > 08:15:21 [dev] ----------------------------------------------------------------- Serving your Dioxus app: fuweb6 🚀 • Press `ctrl+c` to exit the server • Press `r` to rebuild...

> I use 'cargo binstall [email protected] --Force "reinstalled CLI, but the problem remains the same Binstall will not recompile the CLI. use `cargo install [email protected] --force`

This issue has a lot of different unrelated build issues. I think all of these issues are fixed either by: 1) Reinstalling the CLI from source with `cargo install dioxus-cli`...

The assets in the template work on web and desktop. The template imports assets using the `document::*` element which work across all platforms. ``` edit `style = ["assets/main.css"]` ... but...

I can reproduce it with those instructions (https://github.com/ealmloff/reproduce-5093). It looks like there is something special about fullstack here as well since I can't reproduce this with a purely SPA setup....

`onmounted` is very similar to `ref` in react and provides access to the raw mounted dom node. It looks like react implements this by allowing you to return a cleanup...

This looks like a duplicate of https://github.com/DioxusLabs/dioxus/issues/5203 which has been fixed upstream. Try running `cargo update`

Pinning zvariant seems to fix this issue `zvariant = "=5.8.0"`