pub type VirtualListConfig = EuvVirtualListConfig;Expand description
Type alias for backward compatibility.
Aliased Type§
pub struct VirtualListConfig {
pub id: String,
pub total_count: usize,
pub item_height: i32,
pub overscan_count: usize,
}Fields§
§id: StringThe unique identifier for this virtual list container. Used to reference the scroll container element.
total_count: usizeThe total number of items in the list.
item_height: i32The fixed height of each item in pixels.
overscan_count: usizeThe number of extra items to render above and below the visible viewport.