Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

twlistview

load more listview for react native

ListView, LoadMore

readme

TWListView

Load more listview for react native

NPM

NPM

Demo

Alt Text

Install

npm install twlistview --save
npm install lottie-react-native --save

Getting started

import TWListView from "twlistview";
<TWListView
        isLoading={this.state.isLoading}
        ref={(ref) =>{
          this.TWListView = ref;
        }}
        onLoaded={() =>{

            this.load();
          }}
        renderRow={rowData => {
            return (<View/>)
        }
 />

Stop loading

 this.TWListView.stopLoading();