Evan Almloff

Results 533 comments of Evan Almloff

I cannot reproduce the issue with this code: Cargo.toml ```toml [dependencies] dioxus = { version = "0.5", features = ["fullstack"] } [features] web = ["dioxus/web"] server = ["dioxus/axum"] ``` main.rs...

We use several web-sys closures in dioxus-web. If you are interested in debugging this issue, you can try to track down which closure is causing issues by adding [dioxus-logger](https://crates.io/crates/dioxus-logger) and...

> I ran into this, seems to be (in my case) caused by two event handlers firing: removing the `onfocus` handler gets rid of the crash. clicking the green div...

> Hmm, I cherry picked these onto my local and it did not fix #2881 I reverted a bit too much while fixing tests. Should be fixed now

Should be fixed now: ![Screenshot 2024-08-26 at 11 49 46 AM](https://github.com/user-attachments/assets/a1badb19-8a58-4a75-8870-089954ca6bc1)

Fixed upstream in https://github.com/DioxusLabs/manganis/pull/67

The default server function encoding is [post url](https://docs.rs/server_fn/0.7.0-preview2/server_fn/codec/struct.PostUrl.html) which doesn't support nested types. You can set the input and output encoding manually with this syntax: ```rust #[server(input = Json, output...

I understand the frustration, but there are more polite ways to phrase this issue. This is an open source project which comes with no expectation of support. We do our...

From your instructions, it sounds like you are combining the guide for adding tailwind to an existing project with the template that already includes tailwind support. The template generates a...

For anyone using the alpha (`0.6.0-alpha.2`), the way you import tailwind changes slightly. Assets are linked within rsx with the asset macro and head elements: ```rust rsx! { link::Head {...