mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
28 lines
591 B
Rust
28 lines
591 B
Rust
//! Example: README.md showcase
|
|
//!
|
|
//! The example from the README.md.
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_signals::{use_init_signal_rt, use_signal};
|
|
|
|
fn main() {
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
use_init_signal_rt(cx);
|
|
|
|
let mut count = use_signal(cx, || 0);
|
|
|
|
use_future!(cx, || async move {
|
|
loop {
|
|
tokio::time::sleep(std::time::Duration::from_millis(100)).await;
|
|
count += 1;
|
|
println!("current: {count}");
|
|
}
|
|
});
|
|
|
|
cx.render(rsx! {
|
|
div { "High-Five counter: {count}" }
|
|
})
|
|
}
|