Deuque / overlay_tooltip

An overlay tooltip handler for onboarding
BSD 3-Clause "New" or "Revised" License
16 stars 26 forks source link

preferredOverlay parameter isn't defined in OverlayTooltipScaffold #14

Closed burhankhanzada closed 1 year ago

burhankhanzada commented 1 year ago

from pub.dev v0.2.2

OverlayTooltipScaffold({
Key? key,
required this.controller,
required this.builder,
this.overlayColor = Colors.black54,
this.startWhen,
this.tooltipAnimationDuration = const Duration(milliseconds: 500),
this.tooltipAnimationCurve = Curves.decelerate,
}) : super(
key: key,
controller: controller,
builder: builder,
overlayColor: overlayColor,
startWhen: startWhen,
tooltipAnimationDuration: tooltipAnimationDuration,
tooltipAnimationCurve: tooltipAnimationCurve);

from repo v0.2.2

OverlayTooltipScaffold({
Key? key,
required this.controller,
required this.builder,
this.overlayColor = Colors.black54,
this.startWhen,
this.tooltipAnimationDuration = const Duration(milliseconds: 500),
this.tooltipAnimationCurve = Curves.decelerate,
this.preferredOverlay,
}) : super(
key: key,
controller: controller,
builder: builder,
overlayColor: overlayColor,
startWhen: startWhen,
tooltipAnimationDuration: tooltipAnimationDuration,
tooltipAnimationCurve: tooltipAnimationCurve,
preferredOverlay: preferredOverlay,
);
Deuque commented 1 year ago

Thanks for noticing, Release 0.2.3 coming right up,

Deuque commented 1 year ago

@burhankhanzada v0.2.3 is now available