gooey 0.2.0

A wgpu-powered graphical user interface (GUI) library with a reactive data model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use gooey::widget::MakeWidget;
use gooey::Run;

fn main() -> gooey::Result {
    "Heading 1"
        .h1()
        .and("Heading 2".h2())
        .and("Heading 3".h3())
        .and("Heading 4".h4())
        .and("Heading 5".h5())
        .and("Heading 6".h6())
        .and("Regular Text")
        .and("Small Text".small())
        .and("X-Small Text".x_small())
        .into_rows()
        .centered()
        .run()
}