StatusStepper constructor
const
StatusStepper({
- required List<
Widget> children, - Duration animationDuration = const Duration(milliseconds: 200),
- int lastActiveIndex = -1,
- int currentIndex = -1,
- Duration animationDelayDuration = Duration.zero,
- Curve connectorCurve = Curves.linear,
- Curve itemCurve = Curves.linear,
- double connectorThickness = 2,
- Color? activeColor,
- Color? disabledColor,
- Key? key,
Implementation
const StatusStepper({
required this.children,
this.animationDuration = const Duration(milliseconds: 200),
this.lastActiveIndex = -1,
this.currentIndex = -1,
this.animationDelayDuration = Duration.zero,
this.connectorCurve = Curves.linear,
this.itemCurve = Curves.linear,
this.connectorThickness = 2,
this.activeColor,
this.disabledColor,
Key? key,
}) : super(key: key);