diff options
author | 2020-01-05 22:03:32 +0100 | |
---|---|---|
committer | 2020-01-05 22:03:32 +0100 | |
commit | bbc8f837d72b9bc5f6a0b3125b54c246fb3b2b94 (patch) | |
tree | 749e2b339ca8ca08a6f5d28befc6a3f137fc2d01 /native/src/widget.rs | |
parent | a848306b89053ef4ba2aeb4eb7899bec94d93cb3 (diff) | |
parent | 8311500ac03a95927022d8eec8178ba7d87b0010 (diff) | |
download | iced-bbc8f837d72b9bc5f6a0b3125b54c246fb3b2b94.tar.gz iced-bbc8f837d72b9bc5f6a0b3125b54c246fb3b2b94.tar.bz2 iced-bbc8f837d72b9bc5f6a0b3125b54c246fb3b2b94.zip |
Merge branch 'master' into feature/custom-styling
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 536d9e94..f9424b02 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 progress_bar; 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 progress_bar::ProgressBar; +#[doc(no_inline)] pub use radio::Radio; #[doc(no_inline)] pub use row::Row; |