flutter 更改CircleProgressIndicator的颜色

在flutter中 CircleProgressIndicator  默认颜色为 主题设定的颜色。

CircleProgressIndicator的参数有3种:

value,0~1的浮点数,用来表示进度多少。

valueColor,是animation类型的参数,用来设定进度值的颜色。

backgroundColor,背景颜色,不太好用。

更改进度条的颜色 我们用 valueColor,直接晒代码:

CircularProgressIndicator(valueColor: AlwaysStoppedAnimation(Colors.yellow),),

如果不需要自定义动画风格,就直接传AlwaysStoppedAnimation就好了。

    原文作者:suyie007
    原文地址: https://blog.csdn.net/suyie007/article/details/80662066
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞