美文网首页
Flutter 之 ProgressIndicator 控件

Flutter 之 ProgressIndicator 控件

作者: Goach | 来源:发表于2019-09-25 11:15 被阅读0次

CircularProgressIndicator

创建一个圆形进度条,直接 new CircularProgressIndicator() 即可。当然也可以添加一些属性

CircularProgressIndicator(
            //进度条进度
            value: 0.5,
            //进度条背景颜色
            backgroundColor:Colors.transparent,
            //进度条颜色
            valueColor:new AlwaysStoppedAnimation<Color>(Colors.blue),
            //进度条粗细
            strokeWidth: 4.0,
          )

LinearProgressIndicator

同上,少了 strokeWidth 属性而已。

相关文章

网友评论

      本文标题:Flutter 之 ProgressIndicator 控件

      本文链接:https://www.haomeiwen.com/subject/vypsyctx.html