Evan Almloff

Results 533 comments of Evan Almloff

This is expected behavior for stylesheets. `style = [...]` injected the style into the head at compile time. The new `head::Link` injects it at runtime on the client (or on...

This could be added when the `target` field is added to events as a `ElementRef` (currently called `MountedData`).

I'm worried that allowing only redirects with no dynamic paths to be extracted into a separate function will be confusing. If this works: ```rust #[redirect("/:id", |id: usize| Route::Home)] ``` And...

> I think this topic could use some improvements in the docs Yes, we definitely need to improve the documentation around bundling > Rust version: 1.71.1 stable-x86_64-pc-windows-gnu We have found...

We should allow `Option` in query and hash segments which tries to parse the inner type and then falls back to `None` if it fails

The fact that setting the status happens after some async work makes this complicated. Fullstack now supports streaming which means there are a few different stages of the response: ##...

This is blocked on https://github.com/DioxusLabs/blitz adding support for rendering with wgpu inside an existing document or dioxus-desktop integrating with wgpu like [this](https://github.com/tauri-apps/wry/blob/dev/examples/wgpu.rs) wry example

All examples were updated to the `0.3` version in #20

I'm planning on making tokenizers optional once https://github.com/floneum/floneum/pull/274 is merged. It should be 5-15x faster and pure rust which should remove the cpp tooling requirements

Can you share a standalone reproduction of this issue and the platform you are using (web vs fullstack)? I cannot reproduce this issue with this code: ```rust use dioxus::prelude::*; fn...