mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
28 lines
579 B
Rust
28 lines
579 B
Rust
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",
|
|
border_width: "1px",
|
|
|
|
h1 { height: "2px", color: "green",
|
|
"that's awesome!"
|
|
}
|
|
|
|
ul {
|
|
flex_direction: "column",
|
|
padding_left: "3px",
|
|
(0..10).map(|i| rsx!(
|
|
"> hello {i}"
|
|
))
|
|
}
|
|
}
|
|
})
|
|
}
|