From cbb2e12c034ed714e343d3f01e9feb6a76f9aa08 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 9 Oct 2025 02:05:38 +0000 Subject: [PATCH] Add settings icon button to home UI for reopening path guidance Co-authored-by: xkeyC <39891083+xkeyC@users.noreply.github.com> --- lib/ui/home/home_ui.dart | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/ui/home/home_ui.dart b/lib/ui/home/home_ui.dart index 89be41e..3edcd5f 100644 --- a/lib/ui/home/home_ui.dart +++ b/lib/ui/home/home_ui.dart @@ -152,6 +152,14 @@ class HomeUI extends HookConsumerWidget { onChanged: model.onChangeInstallPath, ), ), + const SizedBox(width: 12), + Button( + onPressed: () => context.push("/guide"), + child: const Padding( + padding: EdgeInsets.all(6), + child: Icon(FluentIcons.settings), + ), + ), if (S.current.app_language_code == NoL10n.langCodeZhCn) ...[ const SizedBox(width: 12), Button(