twlistview
v1.0.8
Published
load more listview for react native
Downloads
47
Readme
TWListView
Load more listview for react native
NPM
Demo
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();