AuiProgress.circular constructor

const AuiProgress.circular({
  1. Key? key,
  2. double? value,
  3. Color? color,
  4. Color? backgroundColor,
  5. double strokeWidth = 4.0,
  6. double height = 6.0,
  7. String? label,
  8. double size = 48.0,
  9. bool animated = true,
})

Creates a circular progress indicator.

Implementation

const AuiProgress.circular({
  super.key,
  this.value,
  this.color,
  this.backgroundColor,
  this.strokeWidth = 4.0,
  this.height = 6.0,
  this.label,
  this.size = 48.0,
  this.animated = true,
}) : _variant = _ProgressVariant.circular;