diff options
author | 2020-01-06 21:01:09 +0100 | |
---|---|---|
committer | 2020-01-06 21:01:09 +0100 | |
commit | d0dc7cebf9c352f4d14827fe47489788f59e61a1 (patch) | |
tree | 17699c2225001ecf23e6730b3a3d3cbcca92ca10 /src | |
parent | f7dfd6537429f94af63d75617c27bc998d72d9c8 (diff) | |
download | iced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.tar.gz iced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.tar.bz2 iced-d0dc7cebf9c352f4d14827fe47489788f59e61a1.zip |
Implement styling for `Scrollable`
Diffstat (limited to '')
-rw-r--r-- | src/native.rs | 14 |
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. |