cushy/examples/input.rs
2023-10-18 15:44:13 -07:00

8 lines
195 B
Rust

use gooey::dynamic::Dynamic;
use gooey::widget::Widget;
use gooey::widgets::{Button, Input};
use gooey::EventLoopError;
fn main() -> Result<(), EventLoopError> {
Input::new("Hello").run()
}