Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelBarbosatec committed Feb 5, 2021
1 parent 782b4db commit a081865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tutorial_coach_mark_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ class TutorialCoachMarkWidgetState extends State<TutorialCoachMarkWidget> {
focusAnimationDuration: widget.focusAnimationDuration,
pulseAnimationDuration: widget.pulseAnimationDuration,
clickTarget: (target) {
if (widget.clickTarget != null) widget.clickTarget(target);
widget.clickTarget?.call(target);
},
clickOverlay: (target) {
if (widget.clickOverlay != null) widget.clickOverlay(target);
widget.clickOverlay?.call(target);
},
focus: (target) {
setState(() {
Expand Down

0 comments on commit a081865

Please sign in to comment.