Crates.io | prototty_unix |
lib.rs | prototty_unix |
version | 0.27.0 |
source | src |
created_at | 2018-01-02 11:40:16.776276 |
updated_at | 2019-03-30 10:02:18.832935 |
description | Prototty context for unix terminals. |
homepage | https://github.com/stevebob/prototty.git |
repository | https://github.com/stevebob/prototty.git |
max_upload_size | |
id | 45196 |
size | 41,800 |
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.
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: