Function tui_tools::getch

source ·
pub fn getch() -> u8
Expand description

Gets a single utf-8 character from the keyboard

example:

use tui_tools::getch;
 
let c = getch(); // 
 
println!("{}", c);