Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcocesarato/react-native-big-list
This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement. This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.
https://github.com/marcocesarato/react-native-big-list
android big data expo fast flatlist ios javascript js large list massive memory performance react react-native react-native-big-list sticky-headers web
Last synced: 3 days ago
JSON representation
This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement. This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.
- Host: GitHub
- URL: https://github.com/marcocesarato/react-native-big-list
- Owner: marcocesarato
- License: apache-2.0
- Created: 2021-06-05T20:03:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-22T02:57:57.000Z (over 1 year ago)
- Last Synced: 2025-01-13T22:14:37.898Z (10 days ago)
- Topics: android, big, data, expo, fast, flatlist, ios, javascript, js, large, list, massive, memory, performance, react, react-native, react-native-big-list, sticky-headers, web
- Language: JavaScript
- Homepage: https://marcocesarato.github.io/react-native-big-list-docs/
- Size: 12.5 MB
- Stars: 532
- Watchers: 3
- Forks: 43
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
### If this project has helped you out, please support us with a star 🌟
[![NPM version](http://img.shields.io/npm/v/react-native-big-list.svg?style=for-the-badge)](http://npmjs.org/package/react-native-big-list)
[![js-prittier-style](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://prettier.io/)
[![Compatibility](https://img.shields.io/badge/platform-android%20%7C%20ios%20%7C%20Web%20%7C%20expo-blue.svg?style=for-the-badge)](http://npmjs.org/package/react-native-big-list)[Documentation](https://marcocesarato.github.io/react-native-big-list-docs/)
## 📘 Description
#### What is this?
This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement.
This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.You can also try it on the published web app: [Demo](https://marcocesarato.github.io/react-native-big-list/)
#### Why another list library?
React Native's FlatList is great but when it comes to big lists it has some flaws because of its item caching.
Exists some alternatives like `react-native-largelist` and `recyclerlistview` but both have some issues.The `react-native-largelist` isn't compatible with web and Expo, has native code that sometimes need to be readjusted and maintained, have a weird list item recycles (because it never has blank items), need data restructure and have some issues when trying to process a lot of data (eg: 100,000 items) because it would freeze the CPU.
The `recyclerlistview` is performant but suffers from an empty frame on mount, weird scroll positions when trying to scroll to an element on mount, and the implementation of sticky headers conflicts with `Animated`.
#### How it works?
Recycler makes it easy to efficiently display large sets of data. You supply the data and define how each item looks, and the recycler library dynamically creates the elements when they're needed.
As the name implies, the recycler recycles those individual elements. When an item scrolls off the screen, the recycler doesn't destroy its view. Instead, the recycler reuses the view for new items that have scrolled onscreen. This reuse vastly improves performance, improving your app's responsiveness and reducing power consumption.When list can't render your items fast enough the non-rendered components will appear as blank space.
This library is fully JS native, so it's compatible with all available platforms: _Android, iOS, Windows, MacOS, Web and Expo_.
## 📖 Install
Install the library from npm or yarn just running one of the following command lines:
| npm | yarn |
| ------------------------------------------ | -------------------------------- |
| `npm install react-native-big-list --save` | `yarn add react-native-big-list` |## 💻 Usage
> Read also [How to migrate from FlatList](https://marcocesarato.github.io/react-native-big-list-docs/extras/migrate-flatlist/)
Basic example:
```javascript
import BigList from "react-native-big-list";
// ...
const MyExample = ({ data }) => {
const renderItem = ({ item, index }) => ;
return ;
};
```For more examples check the `example` directory the `list` directory or check the [Documentation](https://marcocesarato.github.io/react-native-big-list-docs/basics/standard-list)
## 🎨 Screenshots
| BigList vs FlatList | Section List |
| ------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- |
| | |## ⚡️ Example
### Snippets
- [Standard List](https://marcocesarato.github.io/react-native-big-list-docs/basics/standard-list)
- [Columns List](https://marcocesarato.github.io/react-native-big-list-docs/basics/columns-list)
- [Sections List](https://marcocesarato.github.io/react-native-big-list-docs/basics/sections-list)### Expo
Clone or download repo and after:
```shell
cd Example
yarn install # or npm install
expo start
```Open Expo Client on your device. Use it to scan the QR code printed by `expo start`. You may have to wait a minute while your project bundles and loads for the first time.
You can also try it on the published web app: [Demo](https://marcocesarato.github.io/react-native-big-list/)
## 💡 Props and Methods
The list has the same props of the [ScrollView](https://reactnative.dev/docs/scrollview#props) in addition to its specific [Props](https://marcocesarato.github.io/react-native-big-list-docs/props) and [Methods](https://marcocesarato.github.io/react-native-big-list-docs/methods).
## 🤔 How to contribute
Have an idea? Found a bug? Please raise to [ISSUES](https://github.com/marcocesarato/react-native-big-list/issues) or [PULL REQUEST](https://github.com/marcocesarato/react-native-big-list/pulls).
Contributions are welcome and are greatly appreciated! Every little bit helps, and credit will always be given.