LokotroStepProgressIndicator constructor

const LokotroStepProgressIndicator({
  1. Key? key,
  2. required int currentStep,
  3. required int totalSteps,
  4. List<String>? stepLabels,
  5. Color? activeColor,
  6. Color? inactiveColor,
  7. Color? completedColor,
  8. double stepSize = 32.0,
  9. double lineWidth = 2.0,
  10. TextStyle? labelStyle,
})

Implementation

const LokotroStepProgressIndicator({
  super.key,
  required this.currentStep,
  required this.totalSteps,
  this.stepLabels,
  this.activeColor,
  this.inactiveColor,
  this.completedColor,
  this.stepSize = 32.0,
  this.lineWidth = 2.0,
  this.labelStyle,
});