From 63cd0fd8eb1eebae8de7d5141c846fc4ea55d702 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Wed, 30 Oct 2019 03:31:07 +0100 Subject: Draft `TextInput` widget structure Also started a `todos` example to showcase it! --- src/winit.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/winit.rs') diff --git a/src/winit.rs b/src/winit.rs index b2200551..51ae1c1f 100644 --- a/src/winit.rs +++ b/src/winit.rs @@ -1,8 +1,9 @@ pub use iced_wgpu::{Primitive, Renderer}; pub use iced_winit::{ - button, scrollable, slider, text, winit, Align, Background, Checkbox, - Color, Image, Justify, Length, Radio, Scrollable, Slider, Text, + button, scrollable, slider, text, text_input, winit, Align, Background, + Checkbox, Color, Image, Justify, Length, Radio, Scrollable, Slider, Text, + TextInput, }; pub type Element<'a, Message> = iced_winit::Element<'a, Message, Renderer>; -- cgit