From 6b58effc8373ac45c0f42785d365a8cbca9e256a Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Mon, 20 Oct 2025 21:23:30 +0900 Subject: [PATCH] =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=EC=9D=B8=20=EB=B2=84=ED=8A=BC=20=EA=B0=95=EC=A1=B0=20?= =?UTF-8?q?=EC=8A=A4=ED=83=80=EC=9D=BC=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/features/login/presentation/pages/login_page.dart | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/features/login/presentation/pages/login_page.dart b/lib/features/login/presentation/pages/login_page.dart index 4ae3a70..56e09d3 100644 --- a/lib/features/login/presentation/pages/login_page.dart +++ b/lib/features/login/presentation/pages/login_page.dart @@ -263,9 +263,16 @@ class _LoginPageState extends State { ), if (kDebugMode) ...[ const SizedBox(height: 12), + // QA 요청: 테스트 로그인 버튼을 테마 색상과 굵은 서체로 강조하여 피드백 반영. ShadButton.ghost( onPressed: isLoading ? null : _handleTestLogin, - child: const Text('테스트 로그인'), + child: Text( + '테스트 로그인', + style: theme.textTheme.small.copyWith( + color: theme.colorScheme.primary, + fontWeight: FontWeight.w600, + ), + ), ), ], ],