TourController constructor
TourController({
- required BuildContext context,
- required List<
TourStep> steps, - VoidCallback? onComplete,
- VoidCallback? onSkip,
- dynamic onStepChange()?,
- Duration? startDelay,
- String? persistenceKey,
- Color overlayColor = const Color.fromRGBO(0, 0, 0, 0.7),
- bool dismissOnBarrierTap = false,
Implementation
TourController({
required this.context,
required this.steps,
this.onComplete,
this.onSkip,
this.onStepChange,
this.startDelay,
this.persistenceKey,
this.overlayColor = const Color.fromRGBO(0, 0, 0, 0.7),
this.dismissOnBarrierTap = false,
});