123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- use dioxus::prelude::*;
- fn main() {
- dioxus::tui::launch(app);
- }
- fn app(cx: Scope) -> Element {
- cx.render(rsx! {
- div {
- width: "100%",
- height: "100%",
- flex_direction: "column",
- div {
- width: "100%",
- height: "50%",
- flex_direction: "row",
- div {
- border_width: "1px",
- width: "50%",
- height: "100%",
- background_color: "red",
- justify_content: "center",
- align_items: "center",
- "[A]"
- }
- div {
- width: "50%",
- height: "100%",
- background_color: "black",
- justify_content: "center",
- align_items: "center",
- "[B]"
- }
- }
- div {
- width: "100%",
- height: "50%",
- flex_direction: "row",
- div {
- width: "50%",
- height: "100%",
- background_color: "green",
- justify_content: "center",
- align_items: "center",
- "[C]"
- }
- div {
- width: "50%",
- height: "100%",
- background_color: "blue",
- justify_content: "center",
- align_items: "center",
- "[D]"
- }
- }
- }
- })
- }
|