Skip to main content

VirtualList

Function VirtualList 

Source
pub fn VirtualList<F>(props: VirtualListProps<F>) -> impl IntoView
where F: Fn(usize) -> AnyView + 'static,
Expand description

A virtualized list that renders only the visible slice of count items, calling render with each item index. item_height (fixed row height), height (viewport height), and overscan (extra rows rendered off-screen) tune the windowing.

§Required Props

§Optional Props