dioxus/examples/shortcut.rs

22 lines
649 B
Rust
Raw Normal View History

//! Add global shortcuts to your app while a component is active
//!
//! This demo shows how to add a global shortcut to your app that toggles a signal. You could use this to implement
//! a raycast-type app, or to add a global shortcut to your app that toggles a component on and off.
//!
//! These are *global* shortcuts, so they will work even if your app is not in focus.
2024-01-20 00:36:40 +00:00
use dioxus::desktop::use_global_shortcut;
use dioxus::prelude::*;
fn main() {
launch_desktop(app);
}
fn app() -> Element {
let mut toggled = use_signal(|| false);
2023-06-30 19:48:25 +00:00
_ = use_global_shortcut("ctrl+s", move || toggled.toggle());
2024-01-16 19:18:46 +00:00
rsx!("toggle: {toggled}")
}