CircularProgressIndicator

CircularProgressIndicator

This question already has answers here:
How to change color of CircularProgressIndicator

(9个答案)


去年关闭。




我想更改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,),
      ),

最佳答案

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

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

08-04 02:47