mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
17 lines
355 B
Rust
17 lines
355 B
Rust
use dioxus::prelude::*;
|
|
use dioxus_desktop::use_global_shortcut;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
let toggled = use_state(cx, || false);
|
|
|
|
use_global_shortcut(cx, "ctrl+s", {
|
|
to_owned![toggled];
|
|
move || toggled.modify(|t| !*t)
|
|
});
|
|
|
|
cx.render(rsx!("toggle: {toggled.get()}"))
|
|
}
|