style: 统一患者端页面视觉并补齐入口跳转

- 调整全局颜色基调,提高灰色文字和边框对比度
- 新增企业级页面头部、统计块和卡片通用组件
- 优化用药管理、报告管理、个人信息、通知中心页面布局
- 新增多张页面插画和通用 UI 装饰素材
- 运动计划列表更紧凑,并新增运动计划详情路由
- 补齐医生端协议入口和原始报告查看入口
- 移除设置页未实现的字体大小和清除缓存入口
This commit is contained in:
MingNian
2026-06-25 22:13:42 +08:00
parent 53ce19e8c3
commit 18df2f3285
23 changed files with 1266 additions and 470 deletions

View File

@@ -0,0 +1,212 @@
import 'package:flutter/material.dart';
import '../core/app_colors.dart';
import '../core/app_theme.dart';
class EnterpriseStat {
final String label;
final String value;
final IconData? icon;
const EnterpriseStat({required this.label, required this.value, this.icon});
}
class EnterpriseHeader extends StatelessWidget {
final String title;
final String subtitle;
final IconData icon;
final Color color;
final Color accent;
final List<EnterpriseStat> stats;
final Widget? trailing;
const EnterpriseHeader({
super.key,
required this.title,
required this.subtitle,
required this.icon,
required this.color,
required this.accent,
this.stats = const [],
this.trailing,
});
@override
Widget build(BuildContext context) {
return Row(
children: [
for (var i = 0; i < stats.length; i++) ...[
Expanded(
child: _HeaderStat(
stat: stats[i],
color: i.isEven ? color : accent,
accent: i.isEven ? accent : color,
),
),
if (i != stats.length - 1) const SizedBox(width: 8),
],
],
);
}
}
class _HeaderStat extends StatelessWidget {
final EnterpriseStat stat;
final Color color;
final Color accent;
const _HeaderStat({
required this.stat,
required this.color,
required this.accent,
});
@override
Widget build(BuildContext context) {
return Container(
constraints: const BoxConstraints(minHeight: 54),
padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 9),
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [
color.withValues(alpha: 0.10),
accent.withValues(alpha: 0.06),
],
),
borderRadius: BorderRadius.circular(10),
border: Border.all(color: AppColors.borderLight, width: 1.1),
),
child: Row(
children: [
if (stat.icon != null) ...[
Icon(stat.icon, color: color, size: 16),
const SizedBox(width: 6),
],
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
stat.value,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
color: AppColors.textPrimary,
fontSize: 14,
fontWeight: FontWeight.w800,
),
),
const SizedBox(height: 2),
Text(
stat.label,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
color: AppColors.textSecondary,
fontSize: 11,
fontWeight: FontWeight.w700,
),
),
],
),
),
],
),
);
}
}
class EnterpriseSectionCard extends StatelessWidget {
final String? title;
final IconData? icon;
final Color color;
final Widget child;
final EdgeInsetsGeometry padding;
final Widget? trailing;
const EnterpriseSectionCard({
super.key,
this.title,
this.icon,
required this.color,
required this.child,
this.trailing,
this.padding = const EdgeInsets.all(16),
});
@override
Widget build(BuildContext context) {
return Container(
padding: padding,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(16),
border: Border.all(color: AppColors.border, width: 1.1),
boxShadow: [AppTheme.shadowLight],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
if (title != null) ...[
Row(
children: [
if (icon != null) ...[
Container(
width: 34,
height: 34,
decoration: BoxDecoration(
color: color.withValues(alpha: 0.10),
borderRadius: BorderRadius.circular(10),
),
child: Icon(icon, size: 19, color: color),
),
const SizedBox(width: 10),
],
Expanded(
child: Text(
title!,
maxLines: 1,
overflow: TextOverflow.ellipsis,
style: const TextStyle(
fontSize: 17,
fontWeight: FontWeight.w800,
color: AppColors.textPrimary,
),
),
),
?trailing,
],
),
const SizedBox(height: 14),
],
child,
],
),
);
}
}
class EnterpriseFab extends StatelessWidget {
final VoidCallback onPressed;
final IconData icon;
final Color color;
const EnterpriseFab({
super.key,
required this.onPressed,
required this.icon,
required this.color,
});
@override
Widget build(BuildContext context) {
return FloatingActionButton(
onPressed: onPressed,
backgroundColor: color,
elevation: 0,
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(16)),
child: Icon(icon, size: 26, color: Colors.white),
);
}
}