cushy/examples/scroll.rs
Jonathan Johnson 22fb955dca
More combinators
Maybe I went overboard.
2023-11-08 20:10:01 -08:00

9 lines
196 B
Rust

use gooey::widget::MakeWidget;
use gooey::widgets::Label;
use gooey::Run;
fn main() -> gooey::Result {
Label::new(include_str!("../src/widgets/scroll.rs"))
.scroll()
.run()
}