cushy/examples/scroll.rs
Jonathan Johnson 68339dfb62
Scroll fixes
2023-11-11 10:23:24 -08:00

10 lines
214 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()
.expand()
.run()
}