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

@ -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>;