KinStepper constructor
const
KinStepper({
- Key? key,
- required List<
KinStep> steps, - required int currentStep,
- KinStepperOrientation orientation = KinStepperOrientation.horizontal,
- KinStepperVariant variant = KinStepperVariant.numbered,
- ValueChanged<
int> ? onStepTapped, - bool enableTap = true,
Implementation
const KinStepper({
super.key,
required this.steps,
required this.currentStep,
this.orientation = KinStepperOrientation.horizontal,
this.variant = KinStepperVariant.numbered,
this.onStepTapped,
this.enableTap = true,
});