pub trait Scrollable: View + Sized {
    fn scrollable(self) -> ScrollView<Self> { ... }
}
Expand description

Makes a view wrappable in a ScrollView.

Provided Methods§

Wraps self in a ScrollView.

Implementors§