cushy/examples/input.rs
2023-10-27 10:41:13 -07:00

6 lines
136 B
Rust

use gooey::widgets::Input;
use gooey::{EventLoopError, Run};
fn main() -> Result<(), EventLoopError> {
Input::new("Hello").run()
}