diff options
author | 2019-08-22 15:57:18 +0200 | |
---|---|---|
committer | 2019-08-22 15:57:18 +0200 | |
commit | 64fc0ffded3d4243bbe288a760319ff100d060e1 (patch) | |
tree | 73bfce9e1e4dec346f971f306582e2e894396fc4 /src/widget.rs | |
parent | 10b07b8028984ce424d714e7a799be18fde0b83a (diff) | |
download | iced-64fc0ffded3d4243bbe288a760319ff100d060e1.tar.gz iced-64fc0ffded3d4243bbe288a760319ff100d060e1.tar.bz2 iced-64fc0ffded3d4243bbe288a760319ff100d060e1.zip |
migrated Image and ProgressBar widgets
Diffstat (limited to 'src/widget.rs')
-rw-r--r-- | src/widget.rs | 4 |
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; |