mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
18 lines
413 B
Rust
18 lines
413 B
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
button {
|
|
onclick: |_| async move {
|
|
println!("hello, desktop!");
|
|
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
println!("goodbye, desktop!");
|
|
},
|
|
"hello, desktop!"
|
|
}
|
|
})
|
|
}
|