Evan Almloff
Evan Almloff
You might be running into https://github.com/DioxusLabs/collect-assets/issues/14. If you used a css file in the past with manganis and removed it, there is a bug that will cause it to not...
The liveview updates in this PR look good, but I would like to keep support for `Warp` if possible. https://github.com/DioxusLabs/dioxus/pull/1766 changes a lot of how server functions/fullstack works. It might...
> I'd really like to merge this but the warp issue is holding this PR back. What's the right way to proceed here? Should we split out supported frameworks as...
I cannot reproduce this issue on `MacOs` with this code: https://github.com/ealmloff/fail-reproduce-2270
My `cargo.lock` was out of date. I can reproduce this with dioxus `0.5.1`
I think Plasmo is trying to treat the character offset as a byte offset when you move the cursor here: https://github.com/DioxusLabs/dioxus/blob/main/packages/native-core/src/utils/cursor.rs#L113-L114 We need to convert the character offset into a...
It seems like the duration of the future matters here. This code works as expected: ```rust fn app() -> Element { let mut x = use_signal(|| 0); let res =...
This looks very similar to #1158. If it is the same issue, you can follow this version of the guide which uses the git version of dioxus to fix it...
The same bug exists with `ReadOnlySignal`, but I don't think we can fix that issue without breaking changes because we don't own the type inside ReadOnlySignal
There is something wrong with generational box recycling boxes causing test failures for this PR. Working on a fix