React Native中的RefreshContorl下拉刷新使用
程序员文章站
2022-06-24 17:34:31
我们知道app中都有下拉加载,在react native中也有类似的控件
一、属性方法
(1) onrefresh function 在视图开始刷新的时候调用
(2)...
我们知道app中都有下拉加载,在react native中也有类似的控件
一、属性方法
(1) onrefresh function 在视图开始刷新的时候调用
(2) refreshing bool 视图是否在刷新时显示指示器,也表明当前是否在刷新中
(3) colors [colorproptype] android平台适用 进行设置加载进去指示器的颜色,至少设置一种,最多可以设置4种
(4) enabled bool android平台适用 用来设置下拉刷新功能是否可用
(5) progressbackgroundcolor colorproptype 设置加载进度指示器的背景颜色
(6) size refreshlayoutconsts.size.default android平台适用 加载进度指示器的尺寸大小
(7) tintcolor colorproptype ios平台适用 设置加载进度指示器的颜色
(8)title string ios平台适用 设置加载进度指示器下面的标题文本信息
二、使用方法
<scrollview refreshcontrol={ <refreshcontrol refreshing={this.state.isrefreshing} onrefresh={this._onrefresh} tintcolor="#ff0000" title="loading..." titlecolor="#00ff00" colors={['#ff0000', '#00ff00', '#0000ff']} progressbackgroundcolor="#ffff00" /> } /> _onrefresh() { this.setstate({ isrefreshing:true }); var self = this; settimeout(()=>{ //加载数据 },2000) }
这样就出现加载效果了
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Vue基础学习之项目整合及优化
下一篇: Ajax验证用户名是否存在的实例代码
推荐阅读
-
React Native中Mobx的使用方法详解
-
React Native 自定义下拉刷新上拉加载的列表的示例
-
react-native组件中NavigatorIOS和ListView结合使用的方法
-
React Native中NavigatorIOS组件的简单使用详解
-
React Native 中 react-navigation 导航器的使用 [亲测可用] webflexrnreactnative
-
【JavaScript】Lodash在React Native中的使用
-
React Native中的RefreshContorl下拉刷新使用
-
React Native中TabBarIOS的简单使用方法示例
-
React Native中Navigator的使用方法示例
-
React Native中RefreshContorl下拉刷新教程