IntroViewsFlutter constructor

IntroViewsFlutter(
  1. List<IntroPageViewRF> pages, {
  2. Key? key,
  3. VoidCallback? onTapDoneButton,
  4. bool showSkipButton = true,
  5. TextStyle? pageButtonTextStyles,
  6. double pageButtonTextSize = 18.0,
  7. String? pageButtonFontFamily,
  8. VoidCallback? onTapSkipButton,
  9. Color? pageButtonsColor,
  10. Widget doneText = const TextRF("DONE"),
  11. Widget skipText = const TextRF("SKIP"),
  12. bool doneButtonPersist = false,
  13. MainAxisAlignment columnMainAxisAlignment = MainAxisAlignment.spaceAround,
  14. double fullTransition = FULL_TARNSITION_PX,
})

Implementation

IntroViewsFlutter(
  this.pages, {
  Key? key,
  this.onTapDoneButton,
  this.showSkipButton = true,
  this.pageButtonTextStyles,
  this.pageButtonTextSize = 18.0,
  this.pageButtonFontFamily,
  this.onTapSkipButton,
  this.pageButtonsColor,
  this.doneText = const TextRF("DONE"),
  this.skipText = const TextRF("SKIP"),
  this.doneButtonPersist = false,
  this.columnMainAxisAlignment = MainAxisAlignment.spaceAround,
  this.fullTransition = FULL_TARNSITION_PX,
}) : super(key: key);