mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-12 23:47:16 +00:00
35 lines
967 B
Rust
35 lines
967 B
Rust
use dioxus::desktop::tao::event::Event as WryEvent;
|
|
use dioxus::desktop::tao::event::WindowEvent;
|
|
use dioxus::desktop::use_wry_event_handler;
|
|
use dioxus::desktop::{Config, WindowCloseBehaviour};
|
|
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
LaunchBuilder::desktop()
|
|
.with_cfg(Config::new().with_close_behaviour(WindowCloseBehaviour::CloseWindow))
|
|
.launch(app)
|
|
}
|
|
|
|
fn app() -> Element {
|
|
let mut focused = use_signal(|| true);
|
|
|
|
use_wry_event_handler(move |event, _| {
|
|
if let WryEvent::WindowEvent {
|
|
event: WindowEvent::Focused(new_focused),
|
|
..
|
|
} = event
|
|
{
|
|
focused.set(*new_focused)
|
|
}
|
|
});
|
|
|
|
rsx! {
|
|
div { width: "100%", height: "100%", display: "flex", flex_direction: "column", align_items: "center",
|
|
if focused() {
|
|
"This window is focused!"
|
|
} else {
|
|
"This window is not focused!"
|
|
}
|
|
}
|
|
}
|
|
}
|