Evan Almloff

Results 533 comments of Evan Almloff

There was some discussion of embedding web only components in liveview applications in https://github.com/DioxusLabs/dioxus/issues/1988. However, Dioxus will be moving support for liveview into a community maintained crate in the future...

Autocomplete support for rsx is very limited in the published version of dioxus. https://github.com/DioxusLabs/dioxus/pull/2421 improves autocomplete significantly and will be included in the `0.6` version of dioxus

https://github.com/DioxusLabs/dioxus/pull/2258 rewrote large sections of the CLI. With the latest versions of the CLI and dioxus-desktop, I cannot reproduce this issue on macos. From the error message, it looks like...

On MacOs, this example opens a blank window (without decorations) that loads forever and refuses to exit

We break some of our own rules internally in a way that is fine, but can be easy to get wrong. `use_reactive` should both write to and subscribe to a...

Oh, that is correct. `use_reactive` shouldn't be triggering that warning. Can you share the code that is triggering the issue? This code doesn't trigger the warning when you click the...

There is an issue about dx fmt eating comments here: https://github.com/DioxusLabs/dioxus/issues/2341 And an older issue about using the rustfmt config here: https://github.com/DioxusLabs/dioxus/issues/1492 Dioxus doesn't use rustfmt, so the rustfmt settings...

`dx serve` only autodetects the platform for desktop, web and fullstack projects. For liveview, you need to manually pass `--desktop` to the cli: `dx serve --platform desktop`

We currently hardcode the target directory in a few places in the CLI and hot reloading crates. We should read the cargo config instead

It looks like the automatic platform detection based on features enabled on the dioxus package in `cargo.toml` is not working for `dx build`. Running `dx build -r --platform fullstack` correctly...