Text input (#143)
* update: iced 0.10.0 * wip: text input * wip: text inputs with icons and buttons * wip: improve text input * refactor: text input styling * chore: add scale factor * chore(text_input): add winit example and do some cleanup
This commit is contained in:
parent
fcdefcd8fb
commit
db8e791b87
9 changed files with 3017 additions and 4 deletions
10
src/widget/text_input/mod.rs
Normal file
10
src/widget/text_input/mod.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
//! 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};
|
||||
Loading…
Add table
Add a link
Reference in a new issue