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

7 lines
145 B
Rust

use gooey::widget::MakeWidget;
use gooey::widgets::Input;
use gooey::Run;
fn main() -> gooey::Result {
Input::new("Hello").expand().run()
}