diff options
author | 2020-08-13 12:54:34 -0500 | |
---|---|---|
committer | 2020-08-22 21:23:27 +0200 | |
commit | 8d68c8584ea99d3974571cd92edcb31999ebb8fa (patch) | |
tree | 9aae5f2667bc60a8fe6c54440a9212ae1e63687b /native/src/widget.rs | |
parent | 00d66da0cee1dc7faeccc5b3f0794a0393a38da7 (diff) | |
download | iced-8d68c8584ea99d3974571cd92edcb31999ebb8fa.tar.gz iced-8d68c8584ea99d3974571cd92edcb31999ebb8fa.tar.bz2 iced-8d68c8584ea99d3974571cd92edcb31999ebb8fa.zip |
widget Rule added
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 8539e519..a10281df 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -30,6 +30,7 @@ pub mod pick_list; pub mod progress_bar; pub mod radio; pub mod row; +pub mod rule; pub mod scrollable; pub mod slider; pub mod space; @@ -58,6 +59,8 @@ pub use radio::Radio; #[doc(no_inline)] pub use row::Row; #[doc(no_inline)] +pub use rule::Rule; +#[doc(no_inline)] pub use scrollable::Scrollable; #[doc(no_inline)] pub use slider::Slider; |