Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirinzhang/react-native-infinite-list
A high performance list component
https://github.com/mirinzhang/react-native-infinite-list
react react-native
Last synced: 3 days ago
JSON representation
A high performance list component
- Host: GitHub
- URL: https://github.com/mirinzhang/react-native-infinite-list
- Owner: mirinzhang
- Created: 2019-04-30T07:06:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T08:45:14.000Z (over 5 years ago)
- Last Synced: 2024-10-11T13:44:07.915Z (27 days ago)
- Topics: react, react-native
- Language: JavaScript
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-native-infinite-flat-list
A high performance list component### Install
`yarn add react-native-infinite-flat-list`
### Usage
> Just replace `FlatList` with `InfiniteListView`
*Replace this*
```javascript
render() {
return (
{item.name}}
/>
...
```*With this*
```javascript
import { InfiniteListView } from 'react-native-infinite-flat-list'render() {
return (
{item.name}}
itemHeight={80}
/>
...
```