Skip to main content

SectionList

A performant interface for rendering sectioned lists, supporting the most handy features:

If you don't need section support and want a simpler interface, use <FlatList>.

Exampleโ€‹

This is a convenience wrapper around <VirtualizedList>, and thus inherits its props (as well as those of <ScrollView>) that aren't explicitly listed here, along with the following caveats:


Reference

Propsโ€‹

VirtualizedList Propsโ€‹

Inherits VirtualizedList Props.


Required
renderItemโ€‹

Default renderer for every item in every section. Can be over-ridden on a per-section basis. Should return a React element.

Typefunction

The render function will be passed an object with the following keys:


Required
sectionsโ€‹

The actual data to render, akin to the data prop in FlatList.

Typearray of Sections

extraDataโ€‹

A marker property for telling the list to re-render (since it implements PureComponent). If any of your renderItem, Header, Footer, etc. functions depend on anything outside of the data prop, stick it here and treat it immutably.

Typeany

initialNumToRenderโ€‹

How many items to render in the initial batch. This should be enough to fill the screen but not much more. Note these items will never be unmounted as part of the windowed rendering in order to improve perceived performance of scroll-to-top actions.

TypeDefaultnumber10

invertedโ€‹

Reverses the direction of scroll. Uses scale transforms of -1.

TypeDefaultbooleanfalse

ItemSeparatorComponentโ€‹

Rendered in between each item, but not at the top or bottom. By default, highlighted, section, and [leading/trailing][Item/Section] props are provided. renderItem provides separators.highlight/unhighlight which will update the highlighted prop, but you can also add custom props with separators.updateProps. Can be a React Component (e.g. SomeComponent), or a React element (e.g. <SomeComponent />).

Typecomponent, function, element

keyExtractorโ€‹

Used to extract a unique key for a given item at the specified index. Key is used for caching and as the React key to track item re-ordering. The default extractor checks item.key, then item.id, and then falls back to using the index, like React does. Note that this sets keys for each item, but each overall section still needs its own key.

Type(item: object, index: number) => string

ListEmptyComponentโ€‹

Rendered when the list is empty. Can be a React Component (e.g. SomeComponent), or a React element (e.g. <SomeComponent />).

Typecomponent, element

ListFooterComponentโ€‹

Rendered at the very end of the list. Can be a React Component (e.g. SomeComponent), or a React element (e.g. <SomeComponent />).

Typecomponent, element

ListHeaderComponentโ€‹

Rendered at the very beginning of the list. Can be a React Component (e.g. SomeComponent), or a React element (e.g. <SomeComponent />).

Typecomponent, element

onRefreshโ€‹

If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality. Make sure to also set the refreshing prop correctly. To offset the RefreshControl from the top (e.g. by 100 pts), use progressViewOffset={100}.

Typefunction

onViewableItemsChangedโ€‹

Called when the viewability of rows changes, as defined by the viewabilityConfig prop.

Type(callback: {changed: ViewToken[], viewableItems: ViewToken[]}) => void

refreshingโ€‹

Set this true while waiting for new data from a refresh.

TypeDefaultbooleanfalse

removeClippedSubviewsโ€‹

warning

Using this property may lead to bugs (missing content) in some circumstances - use at your own risk.

When true, offscreen child views are removed from their native backing superview when offscreen. This may improve scroll performance for large lists. On Android the default value is true.

Typeboolean

renderSectionFooterโ€‹

Rendered at the bottom of each section.

Type(info: {section: Section}) => element ๏ฝœ null

renderSectionHeaderโ€‹

Rendered at the top of each section. These stick to the top of the ScrollView by default on iOS. See stickySectionHeadersEnabled.

Type(info: {section: Section}) => element ๏ฝœ null

SectionSeparatorComponentโ€‹

Rendered at the top and bottom of each section (note this is different from ItemSeparatorComponent which is only rendered between items). These are intended to separate sections from the headers above and below and typically have the same highlight response as ItemSeparatorComponent. Also receives highlighted, [leading/trailing][Item/Section], and any custom props from separators.updateProps.

Typecomponent, element

stickySectionHeadersEnabledโ€‹

Makes section headers stick to the top of the screen until the next one pushes it off. Only enabled by default on iOS because that is the platform standard there.

TypeDefaultbooleanfalse
Android

true
iOS

Methodsโ€‹

flashScrollIndicators()
iOS
โ€‹

React TSX
flashScrollIndicators();

Displays the scroll indicators momentarily.


recordInteraction()โ€‹

React TSX
recordInteraction();

Tells the list an interaction has occurred, which should trigger viewability calculations, e.g. if waitForInteractions is true and the user has not scrolled. This is typically called by taps on items or by navigation actions.


scrollToLocation()โ€‹

React TSX
scrollToLocation(params: SectionListScrollParams);

Scrolls to the item at the specified sectionIndex and itemIndex (within the section) positioned in the viewable area such that viewPosition set to 0 places it at the top (and may be covered by a sticky header), 1 at the bottom, and 0.5 centered in the middle.

note

You cannot scroll to locations outside the render window without specifying the getItemLayout or onScrollToIndexFailed prop.

Parameters:

NameTypeparams
Required
object

Valid params keys are:

Type Definitionsโ€‹

Sectionโ€‹

An object that identifies the data to be rendered for a given section.

Typeany

Properties:

NameTypeDescriptiondata
Required
arrayThe data for rendering items in this section. Array of objects, much like FlatList's data prop.keystringOptional key to keep track of section re-ordering. If you don't plan on re-ordering sections, the array index will be used by default.renderItemfunctionOptionally define an arbitrary item renderer for this section, overriding the default renderItem for the list.ItemSeparatorComponentcomponent, elementOptionally define an arbitrary item separator for this section, overriding the default ItemSeparatorComponent for the list.keyExtractorfunctionOptionally define an arbitrary key extractor for this section, overriding the default keyExtractor.