TCircularProgress constructor

const TCircularProgress({
  1. Key? key,
  2. double value = 0.0,
  3. bool indeterminate = false,
  4. double size = 40.0,
  5. double strokeWidth = 4.0,
  6. Color? color,
  7. Color? backgroundColor,
  8. bool showPercentage = false,
  9. String? label,
})

Creates a circular progress indicator.

Implementation

const TCircularProgress({
  super.key,
  this.value = 0.0,
  this.indeterminate = false,
  this.size = 40.0,
  this.strokeWidth = 4.0,
  this.color,
  this.backgroundColor,
  this.showPercentage = false,
  this.label,
});