Evan Almloff

Results 533 comments of Evan Almloff

> It seems like the features it's complaining about are Windows and macOS specific, why are those being included in the Linux build? Dioxus uses `tauri-bundle` to bundle dioxus applications....

> error: failed to compile `dioxus-cli v0.3.1 (https://github.com/DioxusLabs/cli#10c9f3db)`, intermediate artifacts can be found at `/var/folders/yz/vqr9r5hj55jb08qx9sncx0h00000gn/T/cargo-installm5KS9s`. It looks like you are trying to install the dioxus CLI from the old `dioxuslabs/cli`...

I still get the same error when I change the rsx like this: ``` div { "hello world" } ``` to ``` div { "hello\tworld" } ``` The error ```...

Currently the features for Axum, Salvo, and Warp are not enabled in docs.rs. We should add those features to the [docs.rs metadata](https://docs.rs/about/metadata) in the [fullstack cargo.toml](https://github.com/DioxusLabs/dioxus/blob/master/packages/fullstack/Cargo.toml)

Signals are not compatible with all hooks in `dioxus-hooks` currently. The `dioxus-signals` crate defines a different [use_effect](https://github.com/DioxusLabs/dioxus/blob/master/packages/signals/src/effect.rs#L41) hook for signals. Signals track reads instead of memorization which means you don't...

Signals are now the default for effects which fixes this issue

> * The use of `dioxus_mobile::launch(app);` vs the `dioxus_desktop::launch_cfg(app, ...);` used in the tutorial did not affect the outcome in any way. The app still ran the same in Windows...

You can modify the default url -> file system path mapping in the incremental renderer config here: https://github.com/DioxusLabs/dioxus/blob/53727b344de9af5bcd160fb99703a09ec0da2da4/packages/ssr/src/incremental_cfg.rs#L99-L102

I we should strip empty query segments and render any query segments before splitting the string here: https://github.com/DioxusLabs/dioxus/blob/53727b344de9af5bcd160fb99703a09ec0da2da4/packages/ssr/src/incremental_cfg.rs#L134C21-L134C48 If the query is not empty, we should either transform the `?`...

It used to be useful to midigate https://github.com/DioxusLabs/dioxus/issues/1120 but now that we wait until after the first render to show the window (https://github.com/DioxusLabs/dioxus/pull/1588), it should be less of an issue