summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-06 21:01:09 +0100
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-01-06 21:01:09 +0100
commitd0dc7cebf9c352f4d14827fe47489788f59e61a1 (patch)
tree17699c2225001ecf23e6730b3a3d3cbcca92ca10 /src
parentf7dfd6537429f94af63d75617c27bc998d72d9c8 (diff)
downloadiced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.tar.gz
iced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.tar.bz2
iced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.zip
Implement styling for `Scrollable`
Diffstat (limited to '')
-rw-r--r--src/native.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/native.rs b/src/native.rs
index 67f85c20..1061a730 100644
--- a/src/native.rs
+++ b/src/native.rs
@@ -24,20 +24,6 @@ pub mod widget {
//! [`text_input::State`]: text_input/struct.State.html
pub use iced_wgpu::widget::*;
- pub mod scrollable {
- //! Navigate an endless amount of content with a scrollbar.
-
- /// A widget that can vertically display an infinite amount of content
- /// with a scrollbar.
- ///
- /// This is an alias of an `iced_native` scrollable with a default
- /// `Renderer`.
- pub type Scrollable<'a, Message> =
- iced_winit::Scrollable<'a, Message, iced_wgpu::Renderer>;
-
- pub use iced_winit::scrollable::State;
- }
-
pub mod slider {
//! Display an interactive selector of a single value from a range of
//! values.