Component used as a template to render items in the list. Must implement VirtualListItem interface.
Optional
classThe className
applied to the outer container element. Use when styling the entire component.
Component height
Optional
innerThe className
applied to the inner container element. Use for special cases when styling only the inner container and items.
Optional
innerRender prop implementing VirtualInnerRender. Used to customize VirtualList.
Number of items in the list
Optional
itemPassed as VirtualBaseItemProps.data to each child item
Optional
itemFunction that defines the key to use for each item given item index and value of VirtualBaseProps.itemData.
Implementation of ItemOffsetMapping interface that defines size and offset to each item in the list
Use useFixedSizeItemOffsetMapping or useVariableSizeItemOffsetMapping to create implementations for common cases.
Optional
layoutChoice of 'vertical' or 'horizontal' layouts
Optional
maxMaximum size for CSS element beyond which layout breaks. You should never normally need to change this. The default value is compatible with all major browsers.
Optional
minThe minimum number of virtual pages to use when inner container would otherwise be more than VirtualBaseProps.maxCssSize big. You should never normally need to change this.
Optional
onCallback after a scroll event has been processed and state updated but before rendering
Resulting overall offset. Can be passed to ItemOffsetMapping to determine top item.
New ScrollState that will be used for rendering.
Optional
outerRender prop implementing VirtualOuterRender. Used to customize VirtualList.
Optional
useDetermines whether the component should track whether it's being actively scrolled and pass to child items as VirtualBaseItemProps.isScrolling.
Component width
Props accepted by VirtualList