테스트 로그인 버튼 강조 스타일 적용
This commit is contained in:
@@ -263,9 +263,16 @@ class _LoginPageState extends State<LoginPage> {
|
||||
),
|
||||
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,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user