JourneyTimelineProgress constructor

const JourneyTimelineProgress({
  1. Key? key,
  2. required int currentStep,
  3. required int totalSteps,
  4. required Color activeColor,
  5. required Color inactiveColor,
  6. double lineThickness = 2.0,
  7. double dotSize = 12.0,
  8. bool showLabels = true,
})

Implementation

const JourneyTimelineProgress({
  super.key,
  required this.currentStep,
  required this.totalSteps,
  required this.activeColor,
  required this.inactiveColor,
  this.lineThickness = 2.0,
  this.dotSize = 12.0,
  this.showLabels = true,
});