libcosmic/src/widget/text_input/mod.rs

11 lines
243 B
Rust
Raw Normal View History

//! A text input widget from iced widgets plus some added details.
pub mod cursor;
pub mod editor;
mod input;
mod style;
pub mod value;
pub use input::*;
pub use style::{Appearance as TextInputAppearance, StyleSheet as TextInputStyleSheet};