You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Tutorial on how to implement Chat UI with bidirectional infinite scroll
11
14
12
-
[FlatList](https://reactnative.dev/docs/flatlist) by react-native only allows infinite scroll in one direction (using `onEndReached`). This package adds capability on top of FlatList to allow infinitescroll from both directions, and also maintains **smooth scroll** UX.
[FlatList](https://reactnative.dev/docs/flatlist) by react-native only allows infinite scroll in one direction (using `onEndReached`). This package adds capability on top of FlatList to allow infinite scroll from both directions, and also maintains **smooth scroll** UX.
15
20
16
21
- Accepts prop `onStartReached` & `onEndReached`, which you can use to load more results.
17
22
- Calls to onEndReached and onStartReached have been optimized.
0 commit comments