我想更改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,),
),
答案 0 :(得分:1)
也许是这样的:https://stackoverflow.com/a/50075652/10956936
CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.blue))