Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/tip navigation: New optional navigation options for the Showcase() widget #273

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
Removed unnessary log
  • Loading branch information
mdrideout committed Sep 26, 2022
commit de85b579d54237be662d108ce5e31aeecca81b16
2 changes: 0 additions & 2 deletions lib/src/tooltip_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ class _ToolTipWidgetState extends State<ToolTipWidget>

double? _getRight() {
if (widget.position != null) {
debugPrint("This condition");
var rightPosition = widget.position!.getCenter() + (tooltipWidth * 0.5);

// Accommodate end icon offset width if enabled
Expand Down Expand Up @@ -402,7 +401,6 @@ class _ToolTipWidgetState extends State<ToolTipWidget>
child: GestureDetector(
behavior: HitTestBehavior.translucent,
onTap: () {
debugPrint("End");
ShowCaseWidget.of(
widget.globalKey.currentContext!)
.dismiss();
Expand Down