Evan Almloff
Evan Almloff
> Would love for someone to champion this I'm not sure if file based routing would be a good fit with the type safe router we currently have. The current...
`head` and `body` elements are difficult because they need to already exist for the application to load. The approach dioxus-helmet takes will only work for web renderers because it depends...
> I second this request. However, `dioxus-helmet` isn't enough in my case, as I need to actually add properties to both the `html` and `body` elements. > > I don't...
It might make more sense to create a cross platform head hook that lets you change things like the title. That would also make it easier to add any desktop...
This structure isn't compatible with how dioxus handles events currently. Dioxus uses a synthetic event system in javascript that attaches bubbling listeners to the root element and non-bubbling listeners to...
This could be something specific to the system browser on Linux Mint. It seems to work correctly on MacOs. I get this log: ``` IN DROP ZONE IN DROP ZONE...
> This issue also occurs for me: Environment: Dioxus version: 0.4.0/git main Rust version: 1.73 OS info: Gentoo Linux App platform: desktop > > Doing some initial investigation I find...
> I would like to help with this one. I already have some animation [support](https://book.freyaui.dev/guides/animating.html) in Freya but maybe if we join forces we can create a better library! It...
You are correct, generally that error is caused by hydration. You can debug hydration by turning on tracing to the trace level. It will print every node that it tries...
Sometimes the browser will correct some html automatically that breaks hydration. For example, if you have a table without a table body, the browser will fill it in, but it...