readme_hello_world.rs 328 B

12345678910111213141516171819
  1. use dioxus::prelude::*;
  2. fn main() {
  3. dioxus_tui::launch(app);
  4. }
  5. fn app() -> Element {
  6. rsx! {
  7. div {
  8. width: "100%",
  9. height: "10px",
  10. background_color: "red",
  11. justify_content: "center",
  12. align_items: "center",
  13. "Hello world!"
  14. }
  15. }
  16. }