2023-01-01 19:57:33 -05:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
use std::time::Duration;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
dioxus_desktop::launch(app);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn app(cx: Scope) -> Element {
|
2023-07-14 12:52:49 -07:00
|
|
|
let mut count = dioxus_signals::use_signal(cx, || 0);
|
2023-01-01 19:57:33 -05:00
|
|
|
|
2023-01-01 22:09:08 -05:00
|
|
|
use_future!(cx, || async move {
|
2023-01-01 19:57:33 -05:00
|
|
|
loop {
|
2023-01-01 22:02:49 -05:00
|
|
|
count += 1;
|
2023-01-01 22:57:16 -05:00
|
|
|
tokio::time::sleep(Duration::from_millis(400)).await;
|
2023-01-01 19:57:33 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
cx.render(rsx! {
|
|
|
|
h1 { "High-Five counter: {count}" }
|
|
|
|
button { onclick: move |_| count += 1, "Up high!" }
|
|
|
|
button { onclick: move |_| count -= 1, "Down low!" }
|
2023-01-01 22:57:16 -05:00
|
|
|
|
|
|
|
if count() > 5 {
|
|
|
|
rsx!{ h2 { "High five!" } }
|
|
|
|
}
|
2023-01-01 19:57:33 -05:00
|
|
|
})
|
|
|
|
}
|