NiceOnboarding constructor

const NiceOnboarding({
  1. Key? key,
  2. required List<NiceOnboardingPage> pages,
  3. VoidCallback? onComplete,
  4. VoidCallback? onSkip,
  5. bool showSkip = true,
  6. String? skipLabel,
  7. String? nextLabel,
  8. String? completeLabel,
  9. Color? dotColor,
  10. Color? activeDotColor,
  11. EdgeInsets? padding,
})

Implementation

const NiceOnboarding({
  super.key,
  required this.pages,
  this.onComplete,
  this.onSkip,
  this.showSkip = true,
  this.skipLabel,
  this.nextLabel,
  this.completeLabel,
  this.dotColor,
  this.activeDotColor,
  this.padding,
});