Evan Almloff
Evan Almloff
I would be interested to see benchmarks if this has a large performance impact. Dioxus will currently not allocate with static strings inline in the rsx: ```rust rsx! { div...
DogeDark, you wrote a lot of the original eval channel code. If you have time, could you take a look at these changes
This is caused by a `` tag dioxus renders as a placeholder for the `if let Some(title_text) = props.title {` statement. If you look at the network tab, dioxus renderes...
Different projects have good reasons for enabling different flags. I think some of these would be ok to enable by default in the template: - Some of the flags in...
That error will go away if you build your application with the dioxus cli with `dx serve`. Without the head file, [manganis](https://github.com/DioxusLabs/collect-assets) assets will not be preloaded and css files...
Following the getting [started guide](https://dioxuslabs.com/learn/0.5/getting_started) on macOS results in this application on my M2 mac with the `0.5.0` version of both dioxus and the dioxus cli. I choose default CSS...
I cannot reproduce it with that setup on macOS with the 0.5.0 version of the CLI. It might be an error that is specific to the version or your webview....
This is an area where integrating mobile tooling with dioxus would be very helpful (#2091). We currently add any assets you use with manganis or in the `bundle.resources` section to...
> I'm familiar with React/Vue and tried to develop a fullstack app using Dioxus recently. idk if the following blocker I've met is general enough but I'd like to bring...
## API It might make sense to build this functionality into the rsx macro. We could use some of the information from `dioxus-html` in the rsx macro (with an option...