From 719c073fc67c87d6b2da1bc01b74751d3f5e59f0 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 25 Oct 2019 03:47:34 +0200 Subject: Draft `Scrollable` widget (no clipping yet!) --- core/src/widget.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/src/widget.rs') diff --git a/core/src/widget.rs b/core/src/widget.rs index f9d4bf2a..3ee8e347 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -14,6 +14,7 @@ mod radio; mod row; pub mod button; +pub mod scrollable; pub mod slider; pub mod text; @@ -26,6 +27,9 @@ pub use slider::Slider; #[doc(no_inline)] pub use text::Text; +#[doc(no_inline)] +pub use scrollable::Scrollable; + pub use checkbox::Checkbox; pub use column::Column; pub use image::Image; -- cgit