diff options
author | 2019-10-25 03:47:34 +0200 | |
---|---|---|
committer | 2019-10-25 03:47:34 +0200 | |
commit | 719c073fc67c87d6b2da1bc01b74751d3f5e59f0 (patch) | |
tree | 660613d215cafc01a30911c22a5ba107fb61b12c /native/src/widget.rs | |
parent | 4769272122e8cd0a4d666bb06c00cb27f8cad3c4 (diff) | |
download | iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.tar.gz iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.tar.bz2 iced-719c073fc67c87d6b2da1bc01b74751d3f5e59f0.zip |
Draft `Scrollable` widget (no clipping yet!)
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 bcef2665..0d3f6d2c 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -26,6 +26,7 @@ pub mod column; pub mod image; pub mod radio; pub mod row; +pub mod scrollable; pub mod slider; pub mod text; @@ -42,6 +43,8 @@ pub use radio::Radio; #[doc(no_inline)] pub use row::Row; #[doc(no_inline)] +pub use scrollable::Scrollable; +#[doc(no_inline)] pub use slider::Slider; #[doc(no_inline)] pub use text::Text; |