chore: 更新主题、反馈页面和测试用例
- 更新 App 主题配置 - 优化反馈页面 - 更新认证和通知测试用例
This commit is contained in:
@@ -69,6 +69,8 @@ class AppTheme {
|
||||
warning: Color(0xFFF57C00),
|
||||
warningContainer: Color(0xFFFFF3E0),
|
||||
onWarningContainer: Color(0xFF8A4B00),
|
||||
incomeGreenBg: Color(0xFFE8F5E9),
|
||||
incomeGreenText: Color(0xFF2E7D32),
|
||||
),
|
||||
],
|
||||
);
|
||||
|
||||
@@ -50,15 +50,17 @@ class _FeedbackScreenState extends State<FeedbackScreen> {
|
||||
final colors = Theme.of(context).colorScheme;
|
||||
final l10n = AppLocalizations.of(context)!;
|
||||
|
||||
return Scaffold(
|
||||
backgroundColor: colors.surfaceContainerLow,
|
||||
appBar: AppBar(
|
||||
title: Text(l10n.feedbackTitle),
|
||||
centerTitle: true,
|
||||
return GestureDetector(
|
||||
onTap: () => FocusScope.of(context).unfocus(),
|
||||
child: Scaffold(
|
||||
backgroundColor: colors.surfaceContainerLow,
|
||||
surfaceTintColor: colors.surfaceContainerLow,
|
||||
),
|
||||
body: ListView(
|
||||
appBar: AppBar(
|
||||
title: Text(l10n.feedbackTitle),
|
||||
centerTitle: true,
|
||||
backgroundColor: colors.surfaceContainerLow,
|
||||
surfaceTintColor: colors.surfaceContainerLow,
|
||||
),
|
||||
body: ListView(
|
||||
padding: const EdgeInsets.fromLTRB(
|
||||
AppSpacing.lg,
|
||||
AppSpacing.md,
|
||||
@@ -154,6 +156,7 @@ class _FeedbackScreenState extends State<FeedbackScreen> {
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user