summaryrefslogtreecommitdiffstats
path: root/examples/tour.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-21 13:47:20 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-11-21 13:47:20 +0100
commit65eb218d3d7ba52b2869a586a1480eeb3c8f84e4 (patch)
tree644f27f40f2f4b8ee1abe7743aac426297503eea /examples/tour.rs
parentd3553adf278e5b616fbd885f321faa83a4d24b56 (diff)
downloadiced-65eb218d3d7ba52b2869a586a1480eeb3c8f84e4.tar.gz
iced-65eb218d3d7ba52b2869a586a1480eeb3c8f84e4.tar.bz2
iced-65eb218d3d7ba52b2869a586a1480eeb3c8f84e4.zip
Move widgets from `core` to `native` and `web`
Also made fields private and improved `Renderer` traits.
Diffstat (limited to 'examples/tour.rs')
-rw-r--r--examples/tour.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/tour.rs b/examples/tour.rs
index 6d7a080f..8a805088 100644
--- a/examples/tour.rs
+++ b/examples/tour.rs
@@ -1,8 +1,7 @@
use iced::{
- button, scrollable, slider, text::HorizontalAlignment, text_input,
- Application, Background, Button, Checkbox, Color, Column, Command,
- Container, Element, Image, Length, Radio, Row, Scrollable, Slider, Text,
- TextInput,
+ button, scrollable, slider, text_input, Application, Background, Button,
+ Checkbox, Color, Column, Command, Container, Element, HorizontalAlignment,
+ Image, Length, Radio, Row, Scrollable, Slider, Text, TextInput,
};
pub fn main() {