mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 14:40:44 +00:00
36 lines
776 B
Rust
36 lines
776 B
Rust
//! Example: README.md showcase
|
|
//!
|
|
//! The example from the README.md.
|
|
|
|
use std::time::Duration;
|
|
|
|
use dioxus::prelude::*;
|
|
use dioxus_core as dioxus;
|
|
use dioxus_core_macro::*;
|
|
use dioxus_hooks::*;
|
|
use dioxus_html as dioxus_elements;
|
|
|
|
fn main() {
|
|
simple_logger::init().unwrap();
|
|
dioxus_desktop::launch(app);
|
|
}
|
|
|
|
fn app(cx: Scope<()>) -> Element {
|
|
let mut count = use_state(&cx, || 0);
|
|
log::debug!("count is {:?}", count);
|
|
|
|
cx.push_task(|| async move {
|
|
tokio::time::sleep(Duration::from_millis(1000)).await;
|
|
count += 1;
|
|
});
|
|
|
|
cx.render(rsx! {
|
|
div {
|
|
h1 { "High-Five counter: {count}" }
|
|
button {
|
|
onclick: move |_| count.set(0),
|
|
"Click me!"
|
|
}
|
|
}
|
|
})
|
|
};
|