mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
.. | ||
all_events.rs | ||
border.rs | ||
buttons.rs | ||
color_test.rs | ||
colorpicker.rs | ||
components.rs | ||
example.png | ||
flex.rs | ||
hover.rs | ||
list.rs | ||
margin.rs | ||
quadrants.rs | ||
readme.rs | ||
stress.rs | ||
task.rs | ||
text.rs | ||
widgets.rs |
use dioxus::prelude::*; fn main() { dioxus_tui::launch(app); } fn app(cx: Scope) -> Element { cx.render(rsx! { div { width: "100%", height: "10px", background_color: "red", justify_content: "center", align_items: "center", "Hello world!" } }) }