summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/scrollable.rs
blob: fabb4318ef413007c71021bf49048e7a6f0f9a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Navigate an endless amount of content with a scrollbar.
use crate::Renderer;

pub use iced_graphics::scrollable::{Scrollbar, Scroller, StyleSheet};
pub use iced_native::scrollable::State;

/// 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_native::Scrollable<'a, Message, Renderer>;