Split vertical orientation into VerticalSlider

This commit is contained in:
Casper Storm 2022-12-13 10:05:52 +01:00
parent 2e6d90f141
commit bb4161c1ae
No known key found for this signature in database
GPG key ID: BABF49AA70C405C2
6 changed files with 539 additions and 170 deletions

View file

@ -141,6 +141,7 @@ pub mod tooltip {
pub use iced_native::widget::progress_bar;
pub use iced_native::widget::rule;
pub use iced_native::widget::slider;
pub use iced_native::widget::vertical_slider;
pub use iced_native::widget::Space;
pub use button::Button;
@ -157,6 +158,7 @@ pub use text::Text;
pub use text_input::TextInput;
pub use toggler::Toggler;
pub use tooltip::Tooltip;
pub use vertical_slider::VerticalSlider;
#[cfg(feature = "canvas")]
#[cfg_attr(docsrs, doc(cfg(feature = "canvas")))]