29 releases (breaking)
Uses old Rust 2015
0.27.0 | Mar 30, 2019 |
---|---|
0.25.0 | Mar 1, 2019 |
0.20.0 | Apr 3, 2018 |
0.19.0 | Mar 4, 2018 |
#2 in #prototty
32 downloads per month
81KB
2K
SLoC
prototty_unix
A prototty frontend for unix terminals. Provides a Context
which can render a
view to the terminal, and several ways to get input from the terminal.
Example
Let's continue the title example started here:
extern crate prototty;
extern crate prototty_unix;
// Assuming the title and its views were defined here
extern crate prototty_title;
use prototty::Renderer;
use prototty_title::*;
fn main() {
let mut context = prototty_unix::Context::new().unwrap();
let title = Title {
width: 20,
text: "My Title".to_string(),
};
// render the title using the DemoTitleView
context.render(&DemoTitleView, &title).unwrap();
// exit after a key is pressed
context.wait_input().unwrap();
}
Running this will produce the following output in your terminal:
Dependencies
~0.3–1MB
~16K SLoC