IntroductionOptions constructor

const IntroductionOptions({
  1. IntroductionTranslations introductionTranslations = const IntroductionTranslations(),
  2. IntroductionButtonTextstyles introductionButtonTextstyles = const IntroductionButtonTextstyles(),
  3. IndicatorMode indicatorMode = IndicatorMode.dot,
  4. Widget indicatorBuilder(
    1. BuildContext,
    2. PageController,
    3. int,
    4. int,
    )?,
  5. IntroductionLayoutStyle layoutStyle = IntroductionLayoutStyle.imageCenter,
  6. List<IntroductionPage> pages = defaultIntroductionPages,
  7. IntroductionScreenButtonMode buttonMode = IntroductionScreenButtonMode.text,
  8. bool tapEnabled = false,
  9. IntroductionScreenMode mode = IntroductionScreenMode.showNever,
  10. TextAlign textAlign = TextAlign.center,
  11. IntroductionDisplayMode displayMode = IntroductionDisplayMode.multiPageHorizontal,
  12. bool skippable = false,
  13. Widget buttonBuilder(
    1. BuildContext,
    2. VoidCallback ,
    3. Widget,
    4. IntroductionButtonType,
    )?,
  14. IntroductionControlMode controlMode = IntroductionControlMode.previousNextButton,
})

Implementation

const IntroductionOptions({
  this.introductionTranslations = const IntroductionTranslations(),
  this.introductionButtonTextstyles = const IntroductionButtonTextstyles(),
  this.indicatorMode = IndicatorMode.dot,
  this.indicatorBuilder,
  this.layoutStyle = IntroductionLayoutStyle.imageCenter,
  this.pages = defaultIntroductionPages,
  this.buttonMode = IntroductionScreenButtonMode.text,
  this.tapEnabled = false,
  this.mode = IntroductionScreenMode.showNever,
  this.textAlign = TextAlign.center,
  this.displayMode = IntroductionDisplayMode.multiPageHorizontal,
  this.skippable = false,
  this.buttonBuilder,
  this.controlMode = IntroductionControlMode.previousNextButton,
}) : assert(
        !(identical(indicatorMode, IndicatorMode.custom) &&
            indicatorBuilder == null),
        'When indicator mode is set to custom, '
        'make sure to define indicatorBuilder',
      );