테스트 로그인 버튼 강조 스타일 적용

This commit is contained in:
JiWoong Sul
2025-10-20 21:23:30 +09:00
parent 3df9aa0bec
commit 6b58effc83

View File

@@ -263,9 +263,16 @@ class _LoginPageState extends State<LoginPage> {
), ),
if (kDebugMode) ...[ if (kDebugMode) ...[
const SizedBox(height: 12), const SizedBox(height: 12),
// QA 요청: 테스트 로그인 버튼을 테마 색상과 굵은 서체로 강조하여 피드백 반영.
ShadButton.ghost( ShadButton.ghost(
onPressed: isLoading ? null : _handleTestLogin, onPressed: isLoading ? null : _handleTestLogin,
child: const Text('테스트 로그인'), child: Text(
'테스트 로그인',
style: theme.textTheme.small.copyWith(
color: theme.colorScheme.primary,
fontWeight: FontWeight.w600,
),
),
), ),
], ],
], ],