flutter CircularProgressIndicator code example
Example 1: circularprogressindicator color
CircularProgressIndicator(
valueColor:AlwaysStoppedAnimation<Color>(Colors.red),
);
Example 2: flutter CircularProgressIndicator
CircularProgressIndicator(
backgroundColor: Color(0xff000000),
valueColor:
AlwaysStoppedAnimation<Color>(Color(0xfffd7013)))