Skip to content

Commit

Permalink
fix: Added a close button to the tooltip in Onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
sm-sayedi committed Sep 6, 2023
1 parent 0cbd132 commit 21e194f
Showing 1 changed file with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,17 +172,9 @@ class _KnowledgePanelPageTemplateState
),
),
const SizedBox(width: VERY_LARGE_SPACE),
InkWell(
onTap: () {
setState(() {
_isHintDismissed = true;
});
},
splashColor: Theme.of(context).splashColor,
child: const Icon(
Icons.close,
color: WHITE_COLOR,
),
const Icon(
Icons.close,
color: WHITE_COLOR,
),
],
),
Expand Down

0 comments on commit 21e194f

Please sign in to comment.