Miles Murgaw
Miles Murgaw
They mean for the CLI. It had a new feature that keeps the desktop window always on top while running in dev mode.
~~This also happens with `if`, `else if` and `else` statements inside of RSX blocks:~~ ```rs fn app() -> Element { let mut data = use_signal(|| false); rsx! { if data()...
Is this meant to be telemetry uploaded to a database?
There has been the occasional time when I've thought that having a database could be handy. For example the Dioxus Awesome page could be more interactive with one and we...
On the desktop platform there is ``use_wry_event_handler``. We use it in SDK [here](https://github.com/DioxusLabs/sdk/blob/57ab3fa972c6d4a7acc25e82a0aafc3ff9e63403/sdk/src/utils/window.rs#L91). I don't believe anything similar exists for Web though, aside from using the ``web-sys`` crate.
I am unable to reproduce it on Windows 10. Perhaps it's a Windows 11 issue? I used this code snippet (is this what causes the crash for you?) ```rust rsx!...
I am unable to reproduce this using the git version of the CLI. Can you test the git version of the CLI on your end? You can install the git...
I can reproduce it now. The formatter doesn't like inline comments and removes them completely: ```rs rsx! { div { // this comment will be removed "hi", } } ```
Adding to the list. All comments are removed in event handlers (except doc comments): ```rust rsx! { div { // also occurs in move || async move onclick: move |_|...
I imagine the documentation [here](https://dioxuslabs.com/learn/0.4/cookbook/integrations/logging) needs updating too?