✨ 新功能: - 下载16个主流币种图标(BTC, ETH, USDT, BNB, SOL等) - 创建 CoinIcon 组件,支持离线图标和兜底显示 - 更新 CoinAvatar 组件,使用新的 CoinIcon - 更新 market_page.dart 中的 _CoinAvatar 组件 📦 资源: - 图标存放在 flutter_monisuo/assets/icons/crypto/ - 使用 Cryptocurrency Icons 开源图标库 - PNG 格式,128x128 像素 🎯 特性: - 支持自定义大小 - 支持圆形背景 - 未找到图标时显示币种代码(兜底方案) - 支持深色/浅色模式 📝 修改文件: - 新增:flutter_monisuo/lib/ui/components/coin_icon.dart - 新增:flutter_monisuo/assets/icons/crypto/*.png (16个) - 修改:flutter_monisuo/pubspec.yaml - 修改:flutter_monisuo/lib/ui/pages/trade/components/coin_avatar.dart - 修改:flutter_monisuo/lib/ui/pages/market/market_page.dart - ✅ 后端构建成功 (2.0s) - ✅ Flutter Web 构建成功 (24.1s) - ⚠️ Admin: TypeScript类型错误(已知问题)
55 lines
797 B
YAML
55 lines
797 B
YAML
name: flutter_monisuo
|
|
description: 模拟所 - 虚拟货币模拟交易平台
|
|
publish_to: 'none'
|
|
version: 1.0.0+1
|
|
|
|
environment:
|
|
sdk: '>=3.0.0 <4.0.0'
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# UI 组件库
|
|
shadcn_ui: ^0.52.1
|
|
flutter_animate: ^4.5.0
|
|
|
|
# 状态管理
|
|
provider: ^6.1.1
|
|
|
|
# 网络请求
|
|
dio: ^5.4.0
|
|
|
|
# 本地存储
|
|
shared_preferences: ^2.2.2
|
|
|
|
# 国际化
|
|
flutter_localizations:
|
|
sdk: flutter
|
|
|
|
# 工具类
|
|
intl: ^0.20.2
|
|
decimal: ^2.3.3
|
|
|
|
# 图片选择
|
|
image_picker: ^1.0.7
|
|
|
|
# Toast 提示
|
|
bot_toast: ^4.1.3
|
|
|
|
# 字体
|
|
google_fonts: ^6.2.1
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^3.0.1
|
|
|
|
flutter:
|
|
uses-material-design: true
|
|
|
|
assets:
|
|
- assets/images/
|
|
- assets/icons/tabbar/
|
|
- assets/icons/crypto/
|