1
2
3
4
5
6
7
8
9
10
//! Display fields that can be filled with text.
//!
//! A [`TextInput`] has some local [`State`].
pub(crate) mod editor;
pub(crate) mod value;

pub mod cursor;

mod text_input;
pub use text_input::*;