AdminOnboardingScaffold constructor
const
AdminOnboardingScaffold({ - Key? key,
- required int step,
- required int totalSteps,
- required String title,
- required String subtitle,
- required Widget body,
- required String primaryLabel,
- required VoidCallback onPrimary,
- bool showSkip = true,
- String skipLabel = 'Skip for now',
- VoidCallback? onSkip,
- bool primaryEnabled = true,
})
Implementation
const AdminOnboardingScaffold({
super.key,
required this.step,
required this.totalSteps,
required this.title,
required this.subtitle,
required this.body,
required this.primaryLabel,
required this.onPrimary,
this.showSkip = true,
this.skipLabel = 'Skip for now',
this.onSkip,
this.primaryEnabled = true,
});