Skip to content

Commit 1d42f1f

Browse files
committed
Update README.md
1 parent 15dfcd5 commit 1d42f1f

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,25 @@
1313

1414
---
1515

16-
TODO: Write rest of README
16+
A collection of virtual list components, supporting the most handy features:
17+
18+
- Fully cross-platform
19+
- Optional horizontal mode
20+
- Configurable viewability callbacks
21+
- Header support
22+
- Footer support
23+
- Separator support
24+
- Pull to Refresh
25+
- Scroll loading
26+
- ScrollToIndex support
27+
- Multiple column support
28+
29+
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.
30+
31+
## Documentation
32+
33+
More information on the provided list components can be found at:
34+
35+
- `VirtualizedList` - https://reactnative.dev/docs/virtualizedlist
36+
- `FlatList` - https://reactnative.dev/docs/flatlist
37+
- `SectionList` - https://reactnative.dev/docs/sectionlist

0 commit comments

Comments
 (0)