summaryrefslogtreecommitdiffstats
path: root/web/src/lib.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 /web/src/lib.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 '')
-rw-r--r--web/src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs
index 6252f2be..00a85cf5 100644
--- a/web/src/lib.rs
+++ b/web/src/lib.rs
@@ -7,7 +7,10 @@ pub mod widget;
pub use bus::Bus;
pub use element::Element;
-pub use iced_core::{Align, Background, Color, Length};
+pub use iced_core::{
+ Align, Background, Color, Font, HorizontalAlignment, Length,
+ VerticalAlignment,
+};
pub use widget::*;
pub trait Application {