English | 中文
React Native Pull To Refresh Component for ios platform support ScrollView,ListView
npm install --save react-native-pullrefresh-scrollview
import PullRefreshScrollView from 'react-native-pullrefresh-scrollview';
render() {
return (
<PullRefreshScrollView ref="PullRefresh" onRefresh={()=>this.onRefresh()}>
<View><Text>Scroll1</Text></View>
</PullRefreshScrollView>
);
}
import PullRefreshScrollView from 'react-native-pullrefresh-scrollview';
render() {
return (
<ListView
renderScrollComponent={(props) => <PullRefreshScrollView onRefresh={(PullRefresh)=>this.onRefresh(PullRefresh)} {...props} />}
dataSource={this.state.dataSource}
renderRow={(rowData) => <Text>{rowData}</Text>}
/>
);
}
onRefresh: refreshedText: '' refreshingText: '' refreshText:'' useLoadMore:false endText:'' endingText:'' indicatorArrowImg: { // default arrow.png style:{}, url:'' } indicatorImg: { // default style:{}, url:'' } refreshType:'normal' // normal image text
onRefresh(PullRefresh){
PullRefresh.onRefreshEnd();
}
onLoadMore(PullRefresh){
PullRefresh.onLoadMoreEnd();
}
mail:[email protected]
中文 | English
React Native下拉刷新组件 ios 平台 支持ScrollView,ListView
npm install --save react-native-pullrefresh-scrollview
import PullRefreshScrollView from 'react-native-pullrefresh-scrollview';
render() {
return (
<PullRefreshScrollView ref="PullRefresh" onRefresh={()=>this.onRefresh()}>
<View><Text>Scroll1</Text></View>
</PullRefreshScrollView>
);
}
import PullRefreshScrollView from 'react-native-pullrefresh-scrollview';
render() {
return (
<ListView
renderScrollComponent={(props) => <PullRefreshScrollView onRefresh={(PullRefresh)=>this.onRefresh(PullRefresh)} {...props} />}
dataSource={this.state.dataSource}
renderRow={(rowData) => <Text>{rowData}</Text>}
/>
);
}
onRefresh:当触发刷新时的回调 refreshedText: '释放立即刷新' refreshingText: '正在刷新数据中..' refreshText:'下拉可以刷新' useLoadMore:false //是否使用滚动加载功能 即上拉加载 endText:'已经加载完成' endingText:'加载更多数据' indicatorArrowImg: { // 下拉箭头图片和样式 default arrow.png style:{}, url:'' } indicatorImg: { // loading图片和样式 default style:{}, url:'' } refreshType:'normal' // normal image text
onRefresh(PullRefresh){
PullRefresh.onRefreshEnd();
}
onLoadMore(PullRefresh){
PullRefresh.onLoadMoreEnd();
}
此组件还在不断更新中,如有需求欢迎提出反馈[email protected]
此组件目前仅支持ios平台,android平台暂不支持,欢迎有兴趣的小伙伴一起加入开发,将android版的开发出来!