dioxus/examples
2022-01-01 01:08:31 -05:00
..
example.png wip: add an image 2022-01-01 01:08:31 -05:00
frame.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00
layouts.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00
list.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00
margin.rs wip: add an image 2022-01-01 01:08:31 -05:00
quadrants.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00
readme.rs wip: add an image 2022-01-01 01:08:31 -05:00
strecher.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00
text.rs feat: wire up stretch into place 2021-12-31 23:53:37 -05:00

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: "10px",
            background_color: "red",
            justify_content: "center",
            align_items: "center",

            "Hello world!"
        }
    })
}