iced-yoda/wgpu/src/widget/scrollable.rs

14 lines
460 B
Rust
Raw Normal View History

2020-01-06 21:01:09 +01:00
//! Navigate an endless amount of content with a scrollbar.
use crate::Renderer;
2020-05-19 17:15:44 +02:00
pub use iced_graphics::scrollable::{Scrollbar, Scroller, StyleSheet};
2020-01-06 21:01:09 +01:00
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>;