diff options
author | 2022-12-14 03:21:28 +0100 | |
---|---|---|
committer | 2022-12-14 03:21:28 +0100 | |
commit | c35ca2a3207ea24963eb87f4850bf3e3b38ca7d6 (patch) | |
tree | 9513cae51a673d4b8fea5c3bb98244c92be067bf /native/src/widget.rs | |
parent | b01be6b9321d26c167362f4515d3c895a081ba58 (diff) | |
parent | 55f36bc865652009f1c13e3da6f62d55964a10c2 (diff) | |
download | iced-c35ca2a3207ea24963eb87f4850bf3e3b38ca7d6.tar.gz iced-c35ca2a3207ea24963eb87f4850bf3e3b38ca7d6.tar.bz2 iced-c35ca2a3207ea24963eb87f4850bf3e3b38ca7d6.zip |
Merge pull request #1596 from casperstorm/feat/slider-orientation
Added a VerticalSlider widget.
Diffstat (limited to '')
-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 a4b46ed4..efe26fc7 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -33,6 +33,7 @@ pub mod text_input; pub mod toggler; pub mod tooltip; pub mod tree; +pub mod vertical_slider; mod action; mod id; @@ -79,6 +80,8 @@ pub use toggler::Toggler; pub use tooltip::Tooltip; #[doc(no_inline)] pub use tree::Tree; +#[doc(no_inline)] +pub use vertical_slider::VerticalSlider; pub use action::Action; pub use id::Id; |