diff options
author | 2020-08-22 21:25:06 +0200 | |
---|---|---|
committer | 2020-08-22 21:25:06 +0200 | |
commit | 2ce5df084456a92ed1a228738816cf8398b2e918 (patch) | |
tree | 57eae346361880dc9dbbc15a42a56e001e20c5ff /native/src/widget.rs | |
parent | bbc6e91429ff94c3792de9d874999818b2c84a9b (diff) | |
parent | fed30ef7753bbe33af026f1f46a09d8381682284 (diff) | |
download | iced-2ce5df084456a92ed1a228738816cf8398b2e918.tar.gz iced-2ce5df084456a92ed1a228738816cf8398b2e918.tar.bz2 iced-2ce5df084456a92ed1a228738816cf8398b2e918.zip |
Merge branch 'feature/rule-widget' into master
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; |