Evan Almloff
Evan Almloff
I think that issue is caused by building with an older nightly compiler. You can try: - Updating your compiler with `rustup update` - Compiling with the stable compiler -...
There is some overlap with https://github.com/DioxusLabs/dioxus/issues/628, and https://github.com/DioxusLabs/dioxus/issues/1169. Some way to attach attributes/listeners to somewhere outside of children in Dioxus unlocks a bunch of new usecases
Fullstack builds a separate server binary that renders the app on the server and serves static files. That server uses a default port of `8080` that can be changed in...
`include_str` is a macro that copies the contents of the file to a string literal. The git version of Dioxus has limited for hot reloading assets that are read at...
Can you fill out the rest of the issue template (especially the platform and renderer you are using) and provide the code that causes an error rendering tables? The information...
> The entire project is as follows: > `[Uploading table.zip…](https://github.com/DioxusLabs/dioxus/issues/1712)` I think something may have gone wrong when you tried to create a link. That link leads to the current...
> What is the reason for this problem? Can you provide a minimal example for this bug? The example should be one crate without any proc macros and preferably one...
In Dioxus, parsing the route happens through a [FromStr](https://doc.rust-lang.org/std/str/trait.FromStr.html) implementation. That is nice for compatibility with the rust ecosystem, but it means you cannot access any non-global hooks inside of...
In dioxus fullstack, we could bundle split the protected routes and only serve the route if the guard condition is met to more securely hide content.
The pipeline run you linked looks like it does not exist anymore. I tried installing dioxus-cli from the current git version and the published version on `macos` and both succeeded:...