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

Makes a view wrappable in a ScrollView.

Provided Methods

Wraps self in a ScrollView.

Implementors