Skip to content

Latest commit

 

History

History

linear_progress_indicator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

linear_progress_indicator

A new Flutter application which implements a LinearProgressIndicator

How to implement 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

Screenshots

close