Flutter:更改 CircularProgressIndicator 颜色

Far*_*ana 3 android dart flutter

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

CircularProgressIndicator(backgroundColor: Colors.grey[100],strokeWidth: 2.0,)
Run Code Online (Sandbox Code Playgroud)

我已经尝试过,theme但它也不起作用。

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

小智 8

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

CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.blue))
Run Code Online (Sandbox Code Playgroud)