GTFLinearProgressIndicator constructor

const GTFLinearProgressIndicator({
  1. Key? key,
  2. double percent = 0.0,
  3. double? width,
  4. double lineHeight = 10,
  5. Color fillColor = GTFColor.transparent,
  6. Color backgroundColor = GTFColor.grey1,
  7. Color progressColor = GTFColor.orange4,
  8. Radius? barRadius,
  9. EdgeInsets padding = EdgeInsets.zero,
  10. EdgeInsets containerPadding = EdgeInsets.zero,
  11. MainAxisAlignment alignment = MainAxisAlignment.start,
  12. Widget? leftWidget,
  13. Widget? rightWidget,
})

Implementation

const GTFLinearProgressIndicator({
  Key? key,
  this.percent = 0.0,
  this.width,
  this.lineHeight = 10,
  this.fillColor = GTFColor.transparent,
  this.backgroundColor = GTFColor.grey1,
  this.progressColor = GTFColor.orange4,
  this.barRadius,
  this.padding = EdgeInsets.zero,
  this.containerPadding = EdgeInsets.zero,
  this.alignment = MainAxisAlignment.start,
  this.leftWidget,
  this.rightWidget,
}) : super(key: key);