value color circular indicator code example
Example 1: circularrprogress indicator change color
CircularProgressIndicator(
valueColor: new AlwaysStoppedAnimation<Color>(Colors.blue),
),
Example 2: flutter CircularProgressIndicator
CircularProgressIndicator(
backgroundColor: Color(0xff000000),
valueColor:
AlwaysStoppedAnimation<Color>(Color(0xfffd7013)))