Skip to content

Commit eaafd70

Browse files
arnifcharpeni
authored andcommitted
Make FlatList reference link (facebook#734)
Noticed the FlatList in the previous section was a link but not the next reference. Made it a clickable link.
1 parent e6c7a69 commit eaafd70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/virtualizedlist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: virtualizedlist
33
title: VirtualizedList
44
---
55

6-
Base implementation for the more convenient [`<FlatList>`](flatlist.md) and [`<SectionList>`](sectionlist.md) components, which are also better documented. In general, this should only really be used if you need more flexibility than `FlatList` provides, e.g. for use with immutable data instead of plain arrays.
6+
Base implementation for the more convenient [`<FlatList>`](flatlist.md) and [`<SectionList>`](sectionlist.md) components, which are also better documented. In general, this should only really be used if you need more flexibility than [`FlatList`](flatlist.md) provides, e.g. for use with immutable data instead of plain arrays.
77

88
Virtualization massively improves memory consumption and performance of large lists by maintaining a finite render window of active items and replacing all items outside of the render window with appropriately sized blank space. The window adapts to scrolling behavior, and items are rendered incrementally with low-pri (after any running interactions) if they are far from the visible area, or with hi-pri otherwise to minimize the potential of seeing blank space.
99

0 commit comments

Comments
 (0)