AtomicStepProgress constructor
const
AtomicStepProgress({
- Key? key,
- required List<
AtomicProgressStep> steps, - required int currentStep,
- Color? activeColor,
- Color? inactiveColor,
- Color? completedColor,
- AtomicStepProgressOrientation orientation = AtomicStepProgressOrientation.horizontal,
- EdgeInsetsGeometry? margin,
Implementation
const AtomicStepProgress({
super.key,
required this.steps,
required this.currentStep,
this.activeColor,
this.inactiveColor,
this.completedColor,
this.orientation = AtomicStepProgressOrientation.horizontal,
this.margin,
});