Steps constructor

const Steps({
  1. Key? key,
  2. required List<Widget> children,
  3. int current = 0,
  4. Axis direction = Axis.horizontal,
  5. int initial = 0,
  6. Axis labelPlacement = Axis.horizontal,
  7. double? percent,
  8. Widget? progressDot,
  9. bool responsive = true,
  10. StepsSize size = StepsSize.medium,
  11. StepsStatus status = StepsStatus.process,
  12. StepsType type = StepsType.normal,
  13. void onChange(
    1. int current
    )?,
})

Implementation

const Steps({
  Key? key,
  required this.children,
  this.current = 0,
  this.direction = Axis.horizontal,
  this.initial = 0,
  this.labelPlacement = Axis.horizontal,
  this.percent,
  this.progressDot,
  this.responsive = true,
  this.size = StepsSize.medium,
  this.status = StepsStatus.process,
  this.type = StepsType.normal,
  this.onChange,
}) : super(key: key);