2022-01-01 09:49:08 -05:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
2022-07-09 15:15:20 -04:00
|
|
|
dioxus_tui::launch(app);
|
2022-01-01 09:49:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn app(cx: Scope) -> Element {
|
2022-12-07 13:11:40 -08:00
|
|
|
let count = use_state(cx, || 0);
|
2022-01-01 09:49:08 -05:00
|
|
|
|
2022-12-07 13:11:40 -08:00
|
|
|
use_future(cx, (), move |_| {
|
2022-03-09 13:36:30 -05:00
|
|
|
let count = count.to_owned();
|
2022-01-01 09:49:08 -05:00
|
|
|
let update = cx.schedule_update();
|
|
|
|
async move {
|
|
|
|
loop {
|
2022-03-09 13:36:30 -05:00
|
|
|
count.with_mut(|f| *f += 1);
|
2022-02-04 07:24:02 -06:00
|
|
|
tokio::time::sleep(std::time::Duration::from_millis(1000)).await;
|
2022-01-01 09:49:08 -05:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
cx.render(rsx! {
|
|
|
|
div { width: "100%",
|
|
|
|
div { width: "50%", height: "5px", background_color: "blue", justify_content: "center", align_items: "center",
|
|
|
|
"Hello {count}!"
|
|
|
|
}
|
|
|
|
div { width: "50%", height: "10px", background_color: "red", justify_content: "center", align_items: "center",
|
|
|
|
"Hello {count}!"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|