Flutter: 改变CircularProgressIndicator的颜色

3

我想改变CircularProgressIndicator的颜色,但是无法更改,以下是代码,仍然显示蓝色。

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

我尝试使用主题,但它也没有起作用。
child: Theme(
            data: Theme.of(context).copyWith(
            backgroundColor: Colors.grey[100]
            ),
        child: CircularProgressIndicator(strokeWidth: 2.0,),
      ),
1个回答

8

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接