Evan Almloff

Results 533 comments of Evan Almloff

I can reproduce this issue with dioxus fullstack in 0.6 with this code: ```rust // [dependencies] // dioxus = { version = "0.6.3", features = ["fullstack", "router"] } use dioxus::prelude::*;...

I think this has more to do with the `dx serve --platform server` command than your axum integration code. You can get the same error after cloning dioxus and with...

> Doing `dx serve --platform web` doesn't compile. It is giving me a lot of errors. You need to make all of your server-only dependencies optional and only enable them...

> Hey I have one more question. When we are using `#[server]` macro, is dioxus creating an endpoint? And if it isn't then how the frontend is calling the backend...

The writing to signals during a render error is [missing examples](https://github.com/DioxusLabs/dioxus/blob/main/packages/signals/src/warnings.rs#L62-L65). You might be seeing examples from the write and read in the same scope error which is the more...

Kalosm caches the models in your data folder after they are downloaded. If you already have a file downloaded, you can set the llama source to the path to your...

We don't have a cross platform abstraction for this yet, but on desktop you can use a custom handler like [this](https://github.com/DioxusLabs/dioxus/blob/main/examples/video_stream.rs#L23-L35) example and on web you can use a [service...

The segment anything model in kalosm only supports detecting objects from points or creating masks for all objects in a scene. It doesn't accept any input about what kind of...

Some crates like [web-sys](https://rustwasm.github.io/wasm-bindgen/api/web_sys/) host their API docs outside of docs.rs. We could do the same for dioxus under a `/api-docs` route and include the results in the search index....

> [@ealmloff](https://github.com/ealmloff) any insight here? It looks like you may have been the most recent to develop the site. I have been running into that error as well and using...