Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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}
/>
...
```