I want to change CircularProgressIndicator color but unable to change here is the code
still showing blue color.
CircularProgressIndicator(backgroundColor: Colors.grey[100],strokeWidth: 2.0,)
I have tried with theme but it is also not working.
child: Theme(
data: Theme.of(context).copyWith(
backgroundColor: Colors.grey[100]
),
child: CircularProgressIndicator(strokeWidth: 2.0,),
),
Perhaps like this: https://stackoverflow.com/a/50075652/10956936
CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.blue))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With