当前位置:   article > 正文

Flutter开发之——下拉刷新,鸿蒙教程来袭_鸿蒙 flutter开发

鸿蒙 flutter开发

| backgroundColor | 指示器的背景颜色 | Color |

2.3 示例

代码

List _list =[1, 2, 3,];

body: RefreshIndicator(

color: Colors.red,

backgroundColor: Colors.lightBlue,

onRefresh: () {

setState(() {

_list.add(_list.length+1);

});

return Future.delayed(Duration(seconds:1));

},

child: ListView.separated(itemCount: _list.length,

separatorBuilder: (context,index){return Divider(height: 10,color: Colors.red,);} ,

itemBuilder: (BuildContext context, int index){

return Center(child: Text(“数据${_list[index]}”),heightFactor: 1.5,);

}, ),

)

效果图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/306002
推荐阅读
相关标签
  

闽ICP备14008679号