diff options
author | 2023-01-09 19:23:35 +0100 | |
---|---|---|
committer | 2023-01-09 19:23:35 +0100 | |
commit | 7ccd87c36b54e0d53f65f5774f140a0528ae4504 (patch) | |
tree | bf12f165d43c785adfd4ac906b8f4035035c5d42 /src | |
parent | 07d755c6a270bd46fe9752ed57b3ceaddda1f081 (diff) | |
parent | 2d007474dd002dfc936f75f7379f1bbae72c5ad4 (diff) | |
download | iced-7ccd87c36b54e0d53f65f5774f140a0528ae4504.tar.gz iced-7ccd87c36b54e0d53f65f5774f140a0528ae4504.tar.bz2 iced-7ccd87c36b54e0d53f65f5774f140a0528ae4504.zip |
Merge pull request #1550 from bungoboingo/feat/multidirectional-scrolling
[Feature] Multidirectional scrolling
Diffstat (limited to '')
-rw-r--r-- | src/widget.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs index d2d4a1b8..f71bf7ff 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -99,7 +99,8 @@ pub mod radio { pub mod scrollable { //! Navigate an endless amount of content with a scrollbar. pub use iced_native::widget::scrollable::{ - snap_to, style::Scrollbar, style::Scroller, Id, StyleSheet, + snap_to, style::Scrollbar, style::Scroller, Id, Properties, + RelativeOffset, StyleSheet, }; /// A widget that can vertically display an infinite amount of content |