mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-30 16:09:12 +00:00
59 lines
1.3 KiB
Rust
59 lines
1.3 KiB
Rust
use dioxus::prelude::*;
|
|
|
|
fn main() {
|
|
let mut dom = VirtualDom::new(app);
|
|
dom.rebuild();
|
|
|
|
rink::render_vdom(&dom).unwrap();
|
|
}
|
|
|
|
fn app(cx: Scope) -> Element {
|
|
cx.render(rsx! {
|
|
div {
|
|
width: "100%",
|
|
height: "100%",
|
|
flex_direction: "column",
|
|
background_color: "black",
|
|
// margin_right: "10px",
|
|
|
|
|
|
|
|
div {
|
|
width: "70%",
|
|
height: "70%",
|
|
// margin_left: "4px",
|
|
background_color: "green",
|
|
|
|
div {
|
|
width: "100%",
|
|
height: "100%",
|
|
|
|
|
|
margin_top: "2px",
|
|
margin_bottom: "2px",
|
|
margin_left: "2px",
|
|
margin_right: "2px",
|
|
// flex_shrink: "0",
|
|
|
|
background_color: "red",
|
|
justify_content: "center",
|
|
align_items: "center",
|
|
flex_direction: "column",
|
|
|
|
|
|
// padding_top: "2px",
|
|
// padding_bottom: "2px",
|
|
// padding_left: "4px",
|
|
// padding_right: "4px",
|
|
|
|
|
|
"[A]"
|
|
"[A]"
|
|
"[A]"
|
|
"[A]"
|
|
}
|
|
}
|
|
|
|
}
|
|
})
|
|
}
|