SubZeroProgressTracker constructor
const
SubZeroProgressTracker({
- Key? key,
- required List<
SubZeroProgressStep> steps, - required int currentStep,
- SubZeroProgressTrackerOrientation orientation = SubZeroProgressTrackerOrientation.vertical,
- bool interactive = false,
- ValueChanged<
int> ? onStepTapped, - bool showHeader = false,
- double verticalStepSpacing = 24,
- double connectorThickness = 2,
Implementation
const SubZeroProgressTracker({
super.key,
required this.steps,
required this.currentStep,
this.orientation = SubZeroProgressTrackerOrientation.vertical,
this.interactive = false,
this.onStepTapped,
this.showHeader = false,
this.verticalStepSpacing = 24,
this.connectorThickness = 2,
});