消息中心,待测试

This commit is contained in:
2026-01-08 15:33:40 +08:00
parent 7d9c879a4e
commit baee5dba83
5 changed files with 145 additions and 57 deletions

View File

@@ -91,17 +91,19 @@ class MinePage extends GetView<MineController> {
backgroundColor: Colors.grey[100],
padding: const EdgeInsets.all(8),
),
icon: const Badge(
icon: Badge(
// label: Text('3'), // 如果你想显示数字,就加 label
smallSize: 8, // 红点的大小
backgroundColor: Colors.red, // 红点颜色
smallSize: 8,
// 红点的大小
backgroundColor: controller.isNotice ? Colors.red : Colors.white,
// 红点颜色
child: Icon(
Icons.notifications_outlined,
color: Colors.black87,
size: 25,
),
),
)
),
],
),
),
@@ -157,14 +159,14 @@ class MinePage extends GetView<MineController> {
fit: StackFit.expand,
children: [
CircularProgressIndicator(
value: 10, // 假设得分80%
value: (double.tryParse(controller.rating) ?? 0) / 10,
strokeWidth: 8,
backgroundColor: Colors.grey[200],
valueColor: AlwaysStoppedAnimation<Color>(Colors.blue),
),
Center(
child: Text(
'10',
controller.rating,
style: TextStyle(
fontSize: 32,
fontWeight: FontWeight.bold,
@@ -329,7 +331,10 @@ class MinePage extends GetView<MineController> {
// 如果加载完成且有数据
if (snapshot.hasData) {
return TextX.labelSmall("当前版本: ${snapshot.data}",color: Colors.black54,);
return TextX.labelSmall(
"当前版本: ${snapshot.data}",
color: Colors.black54,
);
}
// 错误处理
@@ -338,7 +343,7 @@ class MinePage extends GetView<MineController> {
),
),
],
)
),
],
),
),