├── .gitignore ├── Cargo.toml ├── README.md ├── examples └── builder.rs └── src ├── event.rs ├── lib.rs └── tuiapp.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/README.md -------------------------------------------------------------------------------- /examples/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/examples/builder.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tuiapp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkelleyrtp/tui-builder/HEAD/src/tuiapp.rs --------------------------------------------------------------------------------