dioxus/examples/tasks.rs

29 lines
545 B
Rust
Raw Normal View History

2021-11-10 22:09:52 +00:00
//! Example: README.md showcase
//!
//! The example from the README.md.
2021-12-30 02:28:28 +00:00
use dioxus::prelude::*;
2021-11-15 14:49:01 +00:00
use std::time::Duration;
2021-11-10 22:09:52 +00:00
fn main() {
launch_desktop(app);
2021-11-10 22:09:52 +00:00
}
fn app() -> Element {
2024-01-14 05:12:21 +00:00
let mut count = use_signal(|| 0);
2021-11-10 22:09:52 +00:00
2024-01-15 19:54:17 +00:00
use_future(move || async move {
2024-01-14 05:12:21 +00:00
loop {
tokio::time::sleep(Duration::from_millis(1000)).await;
count += 1;
2021-12-30 02:28:28 +00:00
}
2021-11-10 22:09:52 +00:00
});
2024-01-16 19:18:46 +00:00
rsx! {
2021-11-10 22:09:52 +00:00
div {
h1 { "Current count: {count}" }
2024-01-16 18:47:23 +00:00
button { onclick: move |_| count.set(0), "Reset the count" }
2021-11-10 22:09:52 +00:00
}
2024-01-14 05:12:21 +00:00
}
}