Draft TextInput widget structure

Also started a `todos` example to showcase it!
This commit is contained in:
Héctor Ramón Jiménez 2019-10-30 03:31:07 +01:00
parent 85916c9e87
commit 63cd0fd8eb
11 changed files with 372 additions and 25 deletions

View file

@ -29,6 +29,7 @@ pub mod row;
pub mod scrollable;
pub mod slider;
pub mod text;
pub mod text_input;
#[doc(no_inline)]
pub use button::Button;
@ -48,6 +49,8 @@ pub use scrollable::Scrollable;
pub use slider::Slider;
#[doc(no_inline)]
pub use text::Text;
#[doc(no_inline)]
pub use text_input::TextInput;
use crate::{Event, Hasher, Layout, Node, Point};