diff options
Diffstat (limited to 'native/src/widget/scrollable.rs')
| -rw-r--r-- | native/src/widget/scrollable.rs | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/native/src/widget/scrollable.rs b/native/src/widget/scrollable.rs index 3752fd71..748fd27d 100644 --- a/native/src/widget/scrollable.rs +++ b/native/src/widget/scrollable.rs @@ -15,6 +15,13 @@ use std::{f32, u32};  pub use iced_style::scrollable::StyleSheet; +pub mod style { +    //! The styles of a [`Scrollable`]. +    //! +    //! [`Scrollable`]: crate::widget::Scrollable +    pub use iced_style::scrollable::{Scrollbar, Scroller}; +} +  /// A widget that can vertically display an infinite amount of content with a  /// scrollbar.  #[allow(missing_debug_implementations)]  | 
