hello_world_tui.rs 374 B

1234567891011121314151617181920
  1. #![allow(non_snake_case)]
  2. use dioxus::prelude::*;
  3. fn main() {
  4. dioxus_tui::launch(App);
  5. }
  6. fn App(cx: Scope) -> Element {
  7. cx.render(rsx! {
  8. div {
  9. width: "100%",
  10. height: "10px",
  11. background_color: "red",
  12. justify_content: "center",
  13. align_items: "center",
  14. "Hello world!"
  15. }
  16. })
  17. }