Progress
The Progress widget is a circular indicator used to show that an operation is in progress.
Basic Usage
Section titled “Basic Usage”A simple progress spinner.
Progress()Custom Sizes
Section titled “Custom Sizes”You can specific different sizes for the progress indicator. Defaults to 16.0.
Row( children: [ Progress(size: 16), Progress(size: 32), Progress(size: 48), ],)Custom Colors
Section titled “Custom Colors”You can customize the color of the spinner.
Row( children: [ Progress(color: Colors.blue), Progress(color: Colors.red), Progress(color: Colors.green), ],)