OnboardingPageScaffold constructor
const
OnboardingPageScaffold({ - Key? key,
- required int step,
- required int totalSteps,
- required String title,
- required Widget body,
- required String primaryLabel,
- required VoidCallback onPrimary,
- String? kicker,
- List<OnboardingStep>? steps,
- String? stepsLabel,
- 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,
});