cushy/examples/input.rs
Jonathan Johnson fc165628e5
Input no longer blinks in the background
Also, Expand now expands properly.
2023-11-08 08:44:16 -08:00

6 lines
128 B
Rust

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