PageIndicatorButtons constructor

PageIndicatorButtons({
  1. @required int? acitvePageIndex,
  2. @required int? totalPages,
  3. VoidCallback? onPressedDoneButton,
  4. SlideDirection? slideDirection,
  5. double? slidePercent,
  6. VoidCallback? onPressedSkipButton,
  7. bool showSkipButton = true,
  8. required Widget skipText,
  9. required Widget doneText,
  10. TextStyle? textStyle,
  11. bool? doneButtonPersist,
})

Implementation

PageIndicatorButtons({
  @required this.acitvePageIndex,
  @required this.totalPages,
  this.onPressedDoneButton,
  this.slideDirection,
  this.slidePercent,
  this.onPressedSkipButton,
  this.showSkipButton = true,
required this.skipText, required  this.doneText,
  this.textStyle,
  this.doneButtonPersist,
});