summaryrefslogtreecommitdiffstats
path: root/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-03 13:48:01 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-09-03 13:48:01 +0200
commitb08c999ac8346bfbe9d95d64c05c511a13baf895 (patch)
tree7681f86197804141e3d15044f4a12a22330825ac /src/widget.rs
parente79c69de897d88323cb8fb8327706e6449719d1b (diff)
parent52394732fc2a5c6152a938f1b2967c921bfef7be (diff)
downloadiced-b08c999ac8346bfbe9d95d64c05c511a13baf895.tar.gz
iced-b08c999ac8346bfbe9d95d64c05c511a13baf895.tar.bz2
iced-b08c999ac8346bfbe9d95d64c05c511a13baf895.zip
Merge branch 'image_and_progress-bar'
Diffstat (limited to 'src/widget.rs')
-rw-r--r--src/widget.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/widget.rs b/src/widget.rs
index c674b3e3..b8ecb409 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -25,13 +25,17 @@ mod row;
pub mod button;
pub mod checkbox;
+pub mod image;
+pub mod progress_bar;
pub mod radio;
pub mod slider;
pub mod text;
pub use button::Button;
pub use checkbox::Checkbox;
+pub use image::Image;
pub use column::Column;
+pub use progress_bar::ProgressBar;
pub use radio::Radio;
pub use row::Row;
pub use slider::Slider;