Function freya_components::VirtualScrollView
source · pub fn VirtualScrollView<'a, T>(
cx: Scope<'a, VirtualScrollViewProps<'a, T>>
) -> Element<'_>
Expand description
VirtualScrollView
component.
Props
Example
fn app(cx: Scope) -> Element {
render!(
VirtualScrollView {
show_scrollbar: true,
length: 5,
item_size: 80.0,
builder_values: (),
direction: "vertical",
builder: Box::new(move |(k, i, _, _)| {
rsx! {
label {
key: "{k}",
height: "80",
"Number {i}"
}
}
})
}
)
}