- Backend: .NET 10 Minimal API + EF Core + PostgreSQL - Frontend: Flutter + Riverpod + GoRouter + Dio - AI: DeepSeek LLM + Qwen VLM (OpenAI-compatible) - Auth: SMS + JWT (access/refresh tokens) - Features: AI chat, health tracking, medication management, diet analysis, exercise plans, doctor consultations, report analysis
45 lines
660 B
YAML
45 lines
660 B
YAML
name: health_app
|
|
description: "健康管家 - AI 健康陪伴助手"
|
|
publish_to: 'none'
|
|
version: 1.0.0+1
|
|
|
|
environment:
|
|
sdk: ^3.10.7
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
# 状态管理
|
|
flutter_riverpod: ^3.2.0
|
|
|
|
# HTTP 网络
|
|
dio: ^5.4.0
|
|
|
|
# 安全存储
|
|
flutter_secure_storage: ^9.2.0
|
|
|
|
# 路由
|
|
go_router: ^14.0.0
|
|
|
|
# 图表
|
|
fl_chart: ^0.68.0
|
|
|
|
# 相机 & 图片 & 文件
|
|
image_picker: ^1.0.0
|
|
file_picker: ^10.3.7
|
|
|
|
# 推送(后期集成)
|
|
# jpush_flutter: ^3.4.5
|
|
|
|
# 基础图标
|
|
cupertino_icons: ^1.0.8
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^6.0.0
|
|
|
|
flutter:
|
|
uses-material-design: true
|