2023-09-01 07:29:19 +02:00
|
|
|
|
// Copyright 2019 H<>ctor Ram<61>n, Iced contributors
|
|
|
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
2023-08-23 10:59:26 -04:00
|
|
|
|
//! 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};
|