tui-canvas 0.8.10

Form/textarea/input for TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Single-line text input convenience exports.

pub mod provider;
pub mod state;

#[cfg(feature = "gui")]
pub mod widget;

pub use provider::{TextInputDataProvider, TextInputProvider};
pub use state::{TextInputEventOutcome, TextInputState};

#[cfg(feature = "gui")]
pub use widget::TextInput;