mirror of
https://github.com/danbulant/cushy
synced 2026-05-21 13:18:48 +00:00
10 lines
214 B
Rust
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()
|
|
}
|