TourProgressIndicator constructor

const TourProgressIndicator({
  1. Key? key,
  2. required int currentStep,
  3. required int totalSteps,
  4. ProgressIndicatorStyle style = ProgressIndicatorStyle.dots,
  5. Color activeColor = Colors.white,
  6. Color inactiveColor = Colors.white38,
  7. double dotSize = 8.0,
  8. double dotSpacing = 4.0,
  9. TextStyle? textStyle,
})

Implementation

const TourProgressIndicator({
  super.key,
  required this.currentStep,
  required this.totalSteps,
  this.style = ProgressIndicatorStyle.dots,
  this.activeColor = Colors.white,
  this.inactiveColor = Colors.white38,
  this.dotSize = 8.0,
  this.dotSpacing = 4.0,
  this.textStyle,
});