## 样式主题重点优化 ### 颜色映射(注重主题一致性) - mutedForeground → onSurfaceVariant - border → outline - card → surfaceContainer - destructive → error - 保留所有 AppColorScheme 自定义颜色 ### 文本样式映射 - theme.textTheme.h1/muted/large → AppTextStyles.xxx(context) - 统一使用项目定义的文本样式系统 ### 组件替换(20个文件) - ShadApp → MaterialApp(移除 ShadThemeData) - ShadButton → ElevatedButton/OutlinedButton - ShadDialog → AlertDialog - ShadInputFormField → MaterialInput - ShadSelect → DropdownButtonFormField - ShadCard → Card - showShadDialog → showDialog ### 依赖变更 - 移除:shadcn_ui: ^0.52.1 - 添加:lucide_icons_flutter: ^2.0.0 ### 业务逻辑保护 ✅ 所有 onPressed/onChanged/validator 回调保持不变 ✅ 所有 controller/focusNode 数据绑定保持不变 ✅ 所有布局结构(Column/Row/Padding)保持不变 ✅ 仅替换 UI 组件层,业务逻辑完全保留
233 lines
6.7 KiB
Dart
233 lines
6.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lucide_icons_flutter/lucide_icons.dart';
|
|
import '../../core/theme/app_theme.dart';
|
|
import 'package:flutter_animate/flutter_animate.dart';
|
|
import '../../core/theme/app_spacing.dart';
|
|
import '../../core/theme/app_theme_extension.dart';
|
|
|
|
/// 資產卡片組件 - 用於顯示資產總覽
|
|
///
|
|
/// 設計規則 ("The Kinetic Vault"):
|
|
/// - 漸變背景: Neon Blue → Electric Purple
|
|
/// - 圓角: xl (16px)
|
|
/// - 無邊框,使用漸變層次
|
|
/// - 微妙陰影: 10% black, blur 10px
|
|
class AssetCard extends StatelessWidget {
|
|
final String title;
|
|
final String balance;
|
|
final String? subtitle;
|
|
final String? profit;
|
|
final bool? isProfit;
|
|
final List<AssetItem>? items;
|
|
final Gradient? gradient;
|
|
final VoidCallback? onTap;
|
|
|
|
const AssetCard({
|
|
super.key,
|
|
this.title = '總資產',
|
|
required this.balance,
|
|
this.subtitle,
|
|
this.profit,
|
|
this.isProfit,
|
|
this.items,
|
|
this.gradient,
|
|
this.onTap,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final colorScheme = theme.colorScheme;
|
|
final appColors = context.appColors;
|
|
final cardGradient = gradient ?? appColors.assetGradient;
|
|
|
|
// 主題感知顏色 - 在漸變背景上使用 onPrimary
|
|
final primaryTextColor = colorScheme.onPrimary;
|
|
final secondaryTextColor = colorScheme.onPrimary.withValues(alpha: 0.7);
|
|
|
|
return GestureDetector(
|
|
onTap: onTap,
|
|
child: Container(
|
|
width: double.infinity,
|
|
padding: const EdgeInsets.all(AppSpacing.lg),
|
|
decoration: BoxDecoration(
|
|
gradient: cardGradient,
|
|
borderRadius: BorderRadius.circular(AppRadius.xl),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: colorScheme.onSurface.withValues(alpha: 0.1),
|
|
blurRadius: 10,
|
|
offset: const Offset(0, 4),
|
|
),
|
|
],
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
// 標題行
|
|
Row(
|
|
children: [
|
|
Text(
|
|
title,
|
|
style: AppTextStyles.bodySmall(context).copyWith(color: secondaryTextColor),
|
|
),
|
|
const Spacer(),
|
|
if (onTap != null)
|
|
Icon(
|
|
LucideIcons.chevronRight,
|
|
color: secondaryTextColor,
|
|
size: 18,
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: AppSpacing.sm),
|
|
// 餘額 - 大標題
|
|
Text(
|
|
balance,
|
|
style: AppTextStyles.headlineLarge(context).copyWith(
|
|
fontWeight: FontWeight.bold,
|
|
color: primaryTextColor,
|
|
fontSize: 20,
|
|
),
|
|
),
|
|
// 盈虧信息
|
|
if (profit != null) ...[
|
|
const SizedBox(height: AppSpacing.md),
|
|
Row(
|
|
children: [
|
|
Icon(
|
|
isProfit == true ? LucideIcons.trendingUp : LucideIcons.trendingDown,
|
|
color: secondaryTextColor,
|
|
size: 16,
|
|
),
|
|
const SizedBox(width: 6),
|
|
Text(
|
|
'盈虧: $profit',
|
|
style: AppTextStyles.bodySmall(context).copyWith(color: secondaryTextColor),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
// 子項
|
|
if (items != null && items!.isNotEmpty) ...[
|
|
const SizedBox(height: AppSpacing.lg),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: items!.map((item) => _buildItem(item, primaryTextColor, secondaryTextColor)).toList(),
|
|
),
|
|
],
|
|
],
|
|
),
|
|
),
|
|
).animate().fadeIn(duration: 400.ms).slideY(begin: 0.1, end: 0);
|
|
}
|
|
|
|
Widget _buildItem(AssetItem item, Color primaryTextColor, Color secondaryTextColor) {
|
|
return Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
item.label,
|
|
style: TextStyle(fontSize: 12, color: secondaryTextColor),
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(
|
|
item.value,
|
|
style: TextStyle(
|
|
fontSize: 18,
|
|
fontWeight: FontWeight.w600,
|
|
color: primaryTextColor,
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
/// 資產子項
|
|
class AssetItem {
|
|
final String label;
|
|
final String value;
|
|
|
|
const AssetItem({
|
|
required this.label,
|
|
required this.value,
|
|
});
|
|
}
|
|
|
|
/// 簡潔資產卡片 - 用於列表中顯示
|
|
///
|
|
/// 設計規則:
|
|
/// - 使用 surface 層次而非邊框
|
|
/// - 圓角: xl (16px)
|
|
/// - 漲跌標籤: 15% 透明度背景
|
|
class AssetCardCompact extends StatelessWidget {
|
|
final String title;
|
|
final String balance;
|
|
final String? change;
|
|
final bool? isUp;
|
|
final VoidCallback? onTap;
|
|
|
|
const AssetCardCompact({
|
|
super.key,
|
|
required this.title,
|
|
required this.balance,
|
|
this.change,
|
|
this.isUp,
|
|
this.onTap,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final appColors = context.appColors;
|
|
final isValueUp = isUp ?? true;
|
|
|
|
return Card(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(AppSpacing.md),
|
|
child: InkWell(
|
|
onTap: onTap,
|
|
child: Row(
|
|
children: [
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
title,
|
|
style: AppTextStyles.bodyMedium(context).copyWith(color: theme.colorScheme.onSurfaceVariant),
|
|
),
|
|
const SizedBox(height: 4),
|
|
Text(
|
|
balance,
|
|
style: AppTextStyles.headlineMedium(context).copyWith(
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
if (change != null)
|
|
Container(
|
|
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 6),
|
|
decoration: BoxDecoration(
|
|
color: isValueUp ? appColors.upBackground : appColors.downBackground,
|
|
borderRadius: BorderRadius.circular(AppRadius.sm),
|
|
),
|
|
child: Text(
|
|
change!,
|
|
style: TextStyle(
|
|
color: isValueUp ? appColors.up : appColors.down,
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|