summaryrefslogtreecommitdiffstats
path: root/src/widget.rs
diff options
context:
space:
mode:
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 d1ad8123..17ff50b6 100644
--- a/src/widget.rs
+++ b/src/widget.rs
@@ -16,13 +16,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;