StepperStyle constructor

StepperStyle({
  1. Color activeColor = StepperColors.blue500,
  2. Color activeBorderColor = StepperColors.blue200,
  3. Color inactiveColor = StepperColors.grey300s,
  4. Color inactiveLabelTextColor = StepperColors.grey400s,
  5. Color activeDescriptionTextColor = StepperColors.grey500s,
  6. Color inactiveDescriptionTextColor = StepperColors.grey400s,
  7. int maxLineLabel = 2,
  8. double iconSize = 24.0,
})

Implementation

StepperStyle({
  this.activeColor = StepperColors.blue500,
  this.activeBorderColor = StepperColors.blue200,
  this.inactiveColor = StepperColors.grey300s,
  this.inactiveLabelTextColor = StepperColors.grey400s,
  this.activeDescriptionTextColor = StepperColors.grey500s,
  this.inactiveDescriptionTextColor = StepperColors.grey400s,
  this.maxLineLabel = 2,
  this.iconSize = 24.0,
});