diff options
author | 2020-05-19 21:00:40 +0200 | |
---|---|---|
committer | 2020-05-19 21:00:40 +0200 | |
commit | e6180912488db4d59fbffcb46c5930282306cb92 (patch) | |
tree | f41c7ee830a8765b3795c8b6d012c7c621927cca /graphics/src/widget.rs | |
parent | c2e0c52ce031ffe1c300b3cfa362b0e445ac5afd (diff) | |
download | iced-e6180912488db4d59fbffcb46c5930282306cb92.tar.gz iced-e6180912488db4d59fbffcb46c5930282306cb92.tar.bz2 iced-e6180912488db4d59fbffcb46c5930282306cb92.zip |
Merge unnecessary split widget modules
Diffstat (limited to 'graphics/src/widget.rs')
-rw-r--r-- | graphics/src/widget.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/graphics/src/widget.rs b/graphics/src/widget.rs index 6a8e814b..d9c91d77 100644 --- a/graphics/src/widget.rs +++ b/graphics/src/widget.rs @@ -17,6 +17,11 @@ pub mod scrollable; pub mod slider; pub mod text_input; +mod column; +mod image; +mod row; +mod space; +mod svg; mod text; #[doc(no_inline)] @@ -38,6 +43,11 @@ pub use slider::Slider; #[doc(no_inline)] pub use text_input::TextInput; +pub use column::Column; +pub use image::Image; +pub use row::Row; +pub use space::Space; +pub use svg::Svg; pub use text::Text; #[cfg(feature = "canvas")] |