FastOnboardingView constructor

const FastOnboardingView({
  1. Key? key,
  2. required WidgetBuilder homeBuilder,
  3. required List<Widget> slides,
  4. double stepDotSize = _kStepDotSize,
  5. String doneText = kFastDoneText,
  6. String nextText = kFastNextText,
  7. String skipText = kFastSkipText,
  8. bool allowToSkip = false,
  9. Color? stepDotColor,
  10. FastOnboardingViewController? controller,
  11. VoidCallback? onDone,
  12. VoidCallback? onSkip,
})

Implementation

const FastOnboardingView({
  Key? key,
  required this.homeBuilder,
  required this.slides,
  this.stepDotSize = _kStepDotSize,
  this.doneText = kFastDoneText,
  this.nextText = kFastNextText,
  this.skipText = kFastSkipText,
  this.allowToSkip = false,
  this.stepDotColor,
  this.controller,
  this.onDone,
  this.onSkip,
}) : super(key: key);