CustomCircularProgressIndicator constructor

const CustomCircularProgressIndicator({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. Animation<Color?>? valueColor,
  5. double? strokeWidth = 2.0,
  6. String? semanticsLabel,
  7. String? semanticsValue,
  8. Color? color,
  9. double? strokeAlign,
  10. StrokeCap? strokeCap,
})

CircularProgressIndicator 圆形进度指示器组件

Implementation

const CustomCircularProgressIndicator({
  super.key,
  super.value,
  super.backgroundColor,
  super.valueColor,
  super.strokeWidth = 2.0,
  super.semanticsLabel,
  super.semanticsValue,
  super.color,
  super.strokeAlign,
  super.strokeCap,
});