cushy/examples/scroll.rs
Jonathan Johnson 4c7c3be5ba
Helpers galore
2023-11-14 09:31:56 -08:00

9 lines
175 B
Rust

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