MultiStepperView constructor

const MultiStepperView(
  1. {required List<MultiViewStep> steps,
  2. int currentStep = 0,
  3. bool showAllSteps = false,
  4. bool zeroIndexed = false,
  5. bool showOnlyCurrentStep = false,
  6. ValueChanged<int>? onStepTapped,
  7. double paddingLeft = 10,
  8. double paddingRight = 20,
  9. double pageHeight = 400,
  10. StepperTheme theme = const StepperTheme(),
  11. Key? key}
)

MultiStepperView is a widget that displays a vertical list of steps. Each step is represented by a MultiViewStep widget. Steps can either be displayed in a single page or in multiple pages. If the steps are displayed in multiple pages, the currentStep property determines which page is displayed. The height of the page is determined by the height of the containing widget or by the size property. Style can be customized by setting the theme property.

Implementation

const MultiStepperView({
  required this.steps,
  this.currentStep = 0,
  this.showAllSteps = false,
  this.zeroIndexed = false,
  this.showOnlyCurrentStep = false,
  this.onStepTapped,
  this.paddingLeft = 10,
  this.paddingRight = 20,
  this.pageHeight = 400,
  this.theme = const StepperTheme(),
  super.key,
}) : assert(
        !(showOnlyCurrentStep && !showAllSteps),
        'showOnlyCurrentStep only has effect if showAllSteps is true',
      );