Evan Almloff
Evan Almloff
That was added in https://github.com/DioxusLabs/dioxus/pull/1529. You can use `dx fmt -f -` to format code from stdin
> @ealmloff log will be printed to stdout, how to disable it ? What log are you getting? I don't get any extra logs running this command: ``` echo "rsx\!{div{}}"...
We need to enable the `ws` feature on axum like we do in the liveview crate here to get web socket functionality: https://github.com/DioxusLabs/dioxus/blob/df74e4c2fcf3e4913c2fe7717c0144b7ac2129b4/packages/liveview/Cargo.toml#L35
The git version of dioxus uses muda for menu bars. This issue may already be fixed if you update dioxus. This could be a similar issue to https://github.com/tauri-apps/muda/issues/128 with the...
> Is there any documentation on converting a 0.4 app to a 0.5 app? Or on the basics of using 0.5? https://github.com/DioxusLabs/docsite/pull/202 updates the docsite to 0.5. I haven't written...
You can send large chunks of binary data from rust to javascript with the custom asset handler added in https://github.com/DioxusLabs/dioxus/pull/1719
We can use [this method](https://docs.rs/tower-http/latest/tower_http/services/struct.ServeDir.html#method.precompressed_gzip) on ServeDir to pre-compress static assets in axum in release mode and disable compression in debug mode.
> URL fragments might have `query-string` format. > > here is an example URL from [google oauth docs](https://developers.google.com/identity/protocols/oauth2/javascript-implicit-flow#oauth-2.0-endpoints_1) -`https://oauth2.example.com/callback#access_token=4/P7q7W91&token_type=Bearer&expires_in=3600` How this should be parsed? > > I image route definition...
I don't think we should cache server functions automatically. When the hot reload web socket tries to connect to the server every second we shouldn't be trying to render HTML...
I'm not familiar with OwningRef, but rust has a limitation that makes it impossible to both implement `Copy` and `Drop` at the same time. To safely implement `Deref`, `Ref`s need...