Flutter:更改CircularProgressIndicator颜色

时间:2019-01-30 14:08:05

标签: android dart flutter

我想更改CircularProgressIndicator颜色,但是无法更改,这里是代码 仍然显示蓝色。

CircularProgressIndicator(backgroundColor: Colors.grey[100],strokeWidth: 2.0,)

我尝试过使用theme,但它也无法正常工作。

child: Theme(
            data: Theme.of(context).copyWith(
            backgroundColor: Colors.grey[100]
            ),
        child: CircularProgressIndicator(strokeWidth: 2.0,),
      ),

1 个答案:

答案 0 :(得分:1)

也许是这样的:https://stackoverflow.com/a/50075652/10956936

CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.blue))