readme_hello_world.rs 348 B

12345678910111213141516171819
  1. use dioxus::prelude::*;
  2. fn main() {
  3. dioxus_tui::launch(app);
  4. }
  5. fn app(cx: Scope) -> Element {
  6. cx.render(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. }