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

@@ -91,7 +91,7 @@ class StorePage extends StatelessWidget {
children: [
Text(
name,
style: const TextStyle(
style: TextStyle(
fontSize: 17,
fontWeight: FontWeight.w600,
color: AppColors.textPrimary,
@@ -124,7 +124,7 @@ class StorePage extends StatelessWidget {
),
child: Text(
type,
style: const TextStyle(
style: TextStyle(
fontSize: 11,
color: AppColors.textSecondary,
),
@@ -135,7 +135,7 @@ class StorePage extends StatelessWidget {
],
),
),
const Icon(Icons.chevron_right, color: AppColors.textTertiary),
Icon(Icons.chevron_right, color: AppColors.textTertiary),
],
),
const Divider(height: 24),
@@ -155,7 +155,7 @@ class StorePage extends StatelessWidget {
Expanded(
child: Text(
text,
style: const TextStyle(fontSize: 13, color: AppColors.textSecondary),
style: TextStyle(fontSize: 13, color: AppColors.textSecondary),
),
),
],