A new Flutter application which implements a LinearProgressIndicator
- Use the code below to implement a LinearProgressIndicator
LinearProgressIndicator( value: progress, backgroundColor:Colors.amber[100], valueColor:AlwaysStoppedAnimation<Color>(Colors.blue), ),
- The variable progress takes value from 0 to 1 such that 0 means 0% and 1 means 100% and all other values lying between them