OnboardingPageScaffold constructor

const OnboardingPageScaffold({
  1. Key? key,
  2. required int step,
  3. required int totalSteps,
  4. required String title,
  5. required Widget body,
  6. required String primaryLabel,
  7. required VoidCallback onPrimary,
  8. String? kicker,
  9. List<OnboardingStep>? steps,
  10. String? stepsLabel,
  11. Widget? secondary,
})

Implementation

const OnboardingPageScaffold({
  super.key,
  required this.step,
  required this.totalSteps,
  required this.title,
  required this.body,
  required this.primaryLabel,
  required this.onPrimary,
  this.kicker,
  this.steps,
  this.stepsLabel,
  this.secondary,
});