I am learning Flutter allthought i dont know if it is right decition or not. Any way i want to use LinearProgressIndicator Component from Material Librery but i didnt get how t
You can use AlwaysStoppedAnimation simply for valueColor,
valueColor
LinearProgressIndicator( backgroundColor: Colors.red, valueColor: AlwaysStoppedAnimation(Colors.amber,), value: 0.8, ),