diff --git a/packages/smooth_app/lib/pages/onboarding/knowledge_panel_page_template.dart b/packages/smooth_app/lib/pages/onboarding/knowledge_panel_page_template.dart index e1d351d5067d..e205d75d2d63 100644 --- a/packages/smooth_app/lib/pages/onboarding/knowledge_panel_page_template.dart +++ b/packages/smooth_app/lib/pages/onboarding/knowledge_panel_page_template.dart @@ -159,12 +159,24 @@ class _KnowledgePanelPageTemplateState margin: const EdgeInsetsDirectional.only( start: VERY_LARGE_SPACE, top: 10, - end: VERY_LARGE_SPACE, + end: 10, bottom: 10, ), - child: Text( - appLocalizations.hint_knowledge_panel_message, - style: TextStyle(color: Theme.of(context).cardColor), + child: Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Expanded( + child: Text( + appLocalizations.hint_knowledge_panel_message, + style: TextStyle(color: Theme.of(context).cardColor), + ), + ), + const SizedBox(width: VERY_LARGE_SPACE), + Icon( + Icons.close, + color: Theme.of(context).cardColor, + ), + ], ), ), ),