matetui 0.3.4

🧉 matetui » utilities for building Terminal User Interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(super) mod behaviour {
    pub(super) mod cursor;
    pub(super) mod highlight;
    pub(super) mod input;
    pub(super) mod scroll;
    pub(super) mod util;
}

mod core;

pub use {
    behaviour::input::{Input, Key},
    core::{
        validation::{validators, ValidationResult},
        TextArea,
    },
};