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
use gooey::widget::MakeWidget;
use gooey::Run;

fn main() -> gooey::Result {
    include_str!("../src/widgets/scroll.rs")
        .scroll()
        .expand()
        .run()
}