Evan Almloff
Evan Almloff
The latest version of `dx` proxies the fullstack server behind the hot reloading server on a port is sends to fullstack. You can use [this logic](https://github.com/DioxusLabs/dioxus/blob/main/packages/fullstack/src/launch.rs#L131-L138) to serve your custom...
Ok I think I figured out what the issue is here. I copied over all of the logic launch uses into your app and it still didn't work. The issue...
Yes, I think we could detect this in the CLI
Subtree renderers would let you use a renderer like blitz inside of the existing webview-based desktop renderer. #3062 is about resumability like qwik
I think this is just odd browser behavior. The first version works because the template is unmounted when multiple is set. The dynamic versions keep the selected value from the...
That attribute should be removed. I don't think we should support the `data_` syntax for data attributes because we can't provide any guarantees that the attribute name is correct. It...
> I'm curious now, why does it get from git. Templates? Yes, the templates are pulled from https://github.com/DioxusLabs/dioxus-template/tree/v0.6
The initial version of the type-safe router supported fields that were not present in the URL as the navigation state under a feature flag. For example, `navigation_state_1` and `navigation_state_2` used...
RSX currently evaluates expressions in an odd order. Keys generally just borrow the contents of the expressions, but with dioxus' expanded version of formatted strings you can take a value...
#4212 fixes this issue. It also includes more sensible defaults for the platform of the server and client so you can just do `dx serve --platform web @client -p web...