Function freya::prelude::ScrollView
source · pub fn ScrollView(props: ScrollViewProps) -> Option<VNode>
Expand description
ScrollView
component.
Props
See ScrollViewProps
.
Example
fn app() -> Element {
rsx!(
ScrollView {
theme: theme_with!(ScrollViewTheme {
width: "100%".into(),
height: "300".into(),
}),
show_scrollbar: true,
rect {
background: "blue",
height: "500",
width: "100%"
}
}
)
}