diff options
author | 2020-01-01 17:27:14 +0100 | |
---|---|---|
committer | 2020-01-02 11:11:08 +0100 | |
commit | d60f3b89a75f5b2ad8e6fb17827f5574a0a44bd1 (patch) | |
tree | 2fb1abb3717e8170df4e7946675b550b07d5eab9 /native/src/widget.rs | |
parent | 26de688e68347e1f6e388d01014eac89cea71afa (diff) | |
download | iced-d60f3b89a75f5b2ad8e6fb17827f5574a0a44bd1.tar.gz iced-d60f3b89a75f5b2ad8e6fb17827f5574a0a44bd1.tar.bz2 iced-d60f3b89a75f5b2ad8e6fb17827f5574a0a44bd1.zip |
add(widget): primitive progressbar widget
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index dcc99645..d899da58 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -25,6 +25,7 @@ pub mod checkbox; pub mod column; pub mod container; pub mod image; +pub mod progressbar; pub mod radio; pub mod row; pub mod scrollable; @@ -45,6 +46,8 @@ pub use container::Container; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] +pub use progressbar::Progressbar; +#[doc(no_inline)] pub use radio::Radio; #[doc(no_inline)] pub use row::Row; |