Evan Almloff

Results 533 comments of Evan Almloff

Does this work on windows? I ran into a linker error with android on macos

https://github.com/DioxusLabs/sdk provides some cross platform wrappers for apis that work across web and native implementations. Moving this issue to there for future tracking Dioxus mobile runs your code natively, so...

It looks like the major performance difference is just recalculating styles. In chrome it takes ~50ms. In safari it takes ~1s. I'm not sure how actionable this issue is for...

I have run into that rustc bug before but I haven't seen it with the extract method. It is very frustrating to debug. If the modification you posted to extract...

I don't have access to hardware to test multi-gpu support, so this isn't a feature I will be able to work on in the near future, but I would be...

Could you share a reproduction of this issue? I can't reproduce the issue on the current main branch of dioxus with this code: ```rust // dioxus = { path =...

Thanks for working on this! The bounds are somewhat infectious, but you can get it working without serde if you just follow the errors: https://github.com/DioxusLabs/sdk/compare/main...ealmloff:dioxus-std:decouple-serde I think some of the...

We should also document RuntimeGaurd with web-sys Closures

We only need unique names for the assets that get served. I believe the server name changes on windows so we can keep the old server running until the new...

> @ealmloff your changes in https://github.com/DioxusLabs/dioxus/commit/cda8bb24f103c5de91f2859b40c884d8db73023c#diff-517df2174967af5678c41e224b2d9a1f1e63e7fcdfe46bc4108c14bdf4defff2R25 broke downcast, I suspect for all event types. This is because self.raw is no longer a web_sys::*Event, instead they are all Synthetic and Synthetic...