Skip to content

Progress

The Progress widget is a circular indicator used to show that an operation is in progress.

A simple progress spinner.

Progress()

You can specific different sizes for the progress indicator. Defaults to 16.0.

Row(
children: [
Progress(size: 16),
Progress(size: 32),
Progress(size: 48),
],
)

You can customize the color of the spinner.

Row(
children: [
Progress(color: Colors.blue),
Progress(color: Colors.red),
Progress(color: Colors.green),
],
)