ZwapSimpleTutorialWidget constructor

const ZwapSimpleTutorialWidget({
  1. Key? key,
  2. required GlobalKey<State<StatefulWidget>> focusWidgetKey,
  3. required ZwapTutorialStepContent child,
  4. Widget focusWidgetWrapper(
    1. BuildContext context,
    2. Widget child
    )?,
  5. double? width,
  6. double? height,
  7. Color? backgroundColor,
  8. bool showClose = true,
  9. dynamic onClose()?,
  10. bool dismissible = false,
  11. Offset overlayOffset = Offset.zero,
  12. ZwapButton? cta,
  13. bool blur = true,
})

Implementation

const ZwapSimpleTutorialWidget({
  Key? key,
  required this.focusWidgetKey,
  required this.child,
  this.focusWidgetWrapper,
  this.width,
  this.height,
  this.backgroundColor,
  this.showClose = true,
  this.onClose,
  this.dismissible = false,
  this.overlayOffset = Offset.zero,
  this.cta,
  this.blur = true,
}) : super(key: key);