IntroSlider constructor

IntroSlider({
  1. List<Slide>? slides,
  2. Color? backgroundColorAllSlides,
  3. Widget? renderSkipBtn,
  4. double? widthSkipBtn,
  5. Function? onSkipPress,
  6. String? nameSkipBtn,
  7. TextStyle? styleSkipBtn,
  8. Color? colorSkipBtn,
  9. Color? highlightColorSkipBtn,
  10. bool? showSkipBtn,
  11. double? borderRadiusSkipBtn,
  12. Widget? renderPrevBtn,
  13. double? widthPrevBtn,
  14. String? namePrevBtn,
  15. bool? showPrevBtn,
  16. TextStyle? stylePrevBtn,
  17. Color? colorPrevBtn,
  18. Color? highlightColorPrevBtn,
  19. double? borderRadiusPrevBtn,
  20. Widget? renderDoneBtn,
  21. double? widthDoneBtn,
  22. Function? onDonePress,
  23. String? nameDoneBtn,
  24. Color? colorDoneBtn,
  25. Color? highlightColorDoneBtn,
  26. double? borderRadiusDoneBtn,
  27. TextStyle? styleDoneBtn,
  28. bool? showDoneBtn,
  29. Widget? renderNextBtn,
  30. String? nameNextBtn,
  31. bool? showNextBtn,
  32. Color? colorActiveDot,
  33. Color? colorDot,
  34. bool? showDotIndicator,
  35. double? sizeDot,
  36. dotSliderAnimation? typeDotAnimation,
  37. List<Widget>? listCustomTabs,
  38. Function? onTabChangeCompleted,
  39. Function? refFuncGoToTab,
  40. bool? isScrollable,
  41. ScrollPhysics? scrollPhysics,
  42. bool? hideStatusBar,
  43. scrollbarBehavior? verticalScrollbarBehavior,
})

Implementation

IntroSlider({
  // Slides
  this.slides,
  this.backgroundColorAllSlides,

  // Skip
  this.renderSkipBtn,
  this.widthSkipBtn,
  this.onSkipPress,
  this.nameSkipBtn,
  this.styleSkipBtn,
  this.colorSkipBtn,
  this.highlightColorSkipBtn,
  this.showSkipBtn,
  this.borderRadiusSkipBtn,

  // Prev
  this.renderPrevBtn,
  this.widthPrevBtn,
  this.namePrevBtn,
  this.showPrevBtn,
  this.stylePrevBtn,
  this.colorPrevBtn,
  this.highlightColorPrevBtn,
  this.borderRadiusPrevBtn,

  // Done
  this.renderDoneBtn,
  this.widthDoneBtn,
  this.onDonePress,
  this.nameDoneBtn,
  this.colorDoneBtn,
  this.highlightColorDoneBtn,
  this.borderRadiusDoneBtn,
  this.styleDoneBtn,
  this.showDoneBtn,

  // Next
  this.renderNextBtn,
  this.nameNextBtn,
  this.showNextBtn,

  // Dots
  this.colorActiveDot,
  this.colorDot,
  this.showDotIndicator,
  this.sizeDot,
  this.typeDotAnimation,

  // Tabs
  this.listCustomTabs,
  this.onTabChangeCompleted,
  this.refFuncGoToTab,

  // Behavior
  this.isScrollable,
  this.scrollPhysics,
  this.hideStatusBar,
  this.verticalScrollbarBehavior,
});