Evan Almloff

Results 533 comments of Evan Almloff

You can nest enums with the child attribute: https://github.com/DioxusLabs/dioxus/blob/386153672e68228eacb4b2adf9f66e02e66a3e36/packages/router/tests/via_ssr/child_outlet.rs#L19-L33. We need to add this to the router docs

> Avoid panicking when searching default members in a current directory different from the main workspace folder. We shouldn't be unwrapping in case the Cargo.toml is wrong, but I don't...

I can reproduce the first issue in third alpha, but the second issue seems to be fixed. Here is a reproduction of the first issue that can be run in...

I think this is another case of https://github.com/DioxusLabs/dioxus/issues/2809 for attributes instead of elements

The native renderer doesn't use webview2, but our bundler currently always includes it. #4958 will change a significant chunk of the bundling system to move away from tauri-bundler which should...

I think the simplest way to support multi site routing in dioxus is to just run multiple routers on different addresses which you can do in dioxus today. If you...

This is currently expected behavior because blitz doesn't support javascript. We should at least log a warning if eval is called inside of blitz about javascript support. We may be...

It looks like this issue is specific to the `dx bundle` command. Running the same project with `dx build` produces the right output. bundle and build should do the same...

We should fix this with bundle, but `dx build --web --ssg --release` does the exact same thing bundle should do for ssg builds

This looks like a duplicate of https://github.com/DioxusLabs/dioxus-template/issues/9. The `dx new` command is just a small shim over cargo generate which is driven by the dioxus-template repo