summaryrefslogtreecommitdiffstats
path: root/native/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-30 03:31:07 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-10-30 03:31:07 +0100
commit63cd0fd8eb1eebae8de7d5141c846fc4ea55d702 (patch)
treee0a427a35435ad5fe5ce98a0b5050a1026a80207 /native/src/widget.rs
parent85916c9e8710ee90cbf37d384acbb6d208ff1da3 (diff)
downloadiced-63cd0fd8eb1eebae8de7d5141c846fc4ea55d702.tar.gz
iced-63cd0fd8eb1eebae8de7d5141c846fc4ea55d702.tar.bz2
iced-63cd0fd8eb1eebae8de7d5141c846fc4ea55d702.zip
Draft `TextInput` widget structure
Also started a `todos` example to showcase it!
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r--native/src/widget.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs
index c04f3377..01f5c92e 100644
--- a/native/src/widget.rs
+++ b/native/src/widget.rs
@@ -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};