feat: 静态页面开发完成
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user