NiceStepNav constructor

const NiceStepNav({
  1. Key? key,
  2. required List<NiceNavStepData> steps,
  3. required int currentStep,
  4. ValueChanged<int>? onStepTapped,
  5. bool allowStepTapping = false,
  6. Color? completedColor,
  7. Color? currentColor,
  8. Color? upcomingColor,
  9. Color? errorColor,
})

Implementation

const NiceStepNav({
  super.key,
  required this.steps,
  required this.currentStep,
  this.onStepTapped,
  this.allowStepTapping = false,
  this.completedColor,
  this.currentColor,
  this.upcomingColor,
  this.errorColor,
});