feat: 静态页面开发完成

This commit is contained in:
2026-05-21 14:09:46 +08:00
parent 8156e8efbf
commit 763aef6bb9
73 changed files with 6345 additions and 1370 deletions

View File

@@ -78,7 +78,7 @@ class HelpPage extends StatelessWidget {
const SizedBox(height: 20),
Text(
l10n.faq,
style: const TextStyle(
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: AppColors.textPrimary,
@@ -105,7 +105,7 @@ class HelpPage extends StatelessWidget {
const SizedBox(height: 12),
Text(
l10n.stillQuestions,
style: const TextStyle(
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w600,
color: AppColors.textPrimary,
@@ -114,7 +114,7 @@ class HelpPage extends StatelessWidget {
const SizedBox(height: 8),
Text(
l10n.contactTeam,
style: const TextStyle(fontSize: 14, color: AppColors.textSecondary),
style: TextStyle(fontSize: 14, color: AppColors.textSecondary),
),
const SizedBox(height: 16),
SizedBox(
@@ -190,7 +190,7 @@ class _FaqItemState extends State<_FaqItem> {
),
title: Text(
widget.question,
style: const TextStyle(
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w500,
color: AppColors.textPrimary,
@@ -199,7 +199,7 @@ class _FaqItemState extends State<_FaqItem> {
trailing: AnimatedRotation(
turns: _expanded ? 0.5 : 0,
duration: const Duration(milliseconds: 200),
child: const Icon(Icons.keyboard_arrow_down, color: AppColors.textTertiary),
child: Icon(Icons.keyboard_arrow_down, color: AppColors.textTertiary),
),
onTap: () => setState(() => _expanded = !_expanded),
),
@@ -209,7 +209,7 @@ class _FaqItemState extends State<_FaqItem> {
padding: const EdgeInsets.fromLTRB(72, 0, 16, 16),
child: Text(
widget.answer,
style: const TextStyle(
style: TextStyle(
fontSize: 14,
color: AppColors.textSecondary,
height: 1.6,