WizardPageView constructor

const WizardPageView({
  1. Key? key,
  2. required PreferredSizeWidget appBar,
  3. required List<Widget> pageViewItems,
  4. required List<AnimationController> aniController,
  5. required ScrollController singleChildScrollController,
  6. required WizardBarAnimation wizardBarAnimation,
  7. Container? containerTopOfPage,
  8. Widget? firstButton,
  9. Widget? secondButton,
  10. required List<StepHorizontalAnimation> stepsList,
})

Implementation

const WizardPageView({
  super.key,
  required this.appBar,
  required this.pageViewItems,
  required this.aniController,
  required this.singleChildScrollController,
  required this.wizardBarAnimation,
  this.containerTopOfPage,
  this.firstButton,
  this.secondButton,
  required this.stepsList,
});