|
|
@@ -278,7 +278,7 @@ private fun TaskList(pv: PaddingValues, vm: VMHome) {
|
|
|
}),
|
|
|
verticalAlignment = Alignment.CenterVertically
|
|
|
) {
|
|
|
- Text("我的当前任务", fontSize = 14.sp, fontWeight = FontWeight.Medium, color = Text)
|
|
|
+ Text("当前任务", fontSize = 14.sp, fontWeight = FontWeight.Medium, color = Text)
|
|
|
Spacer(Modifier.weight(1f))
|
|
|
Text("查看全部", fontSize = 14.sp, color = Color(0xFF1E90FF))
|
|
|
}
|
|
|
@@ -354,7 +354,6 @@ fun MessageListItem(msg: Message, vm: VMHome) {
|
|
|
) {
|
|
|
Column(
|
|
|
Modifier
|
|
|
- .padding(end = 10.dp)
|
|
|
.fillMaxHeight()
|
|
|
.weight(1f)
|
|
|
) {
|
|
|
@@ -374,13 +373,13 @@ fun MessageListItem(msg: Message, vm: VMHome) {
|
|
|
Text(msg.createTime.getShowDateOrTime(), fontSize = 14.sp, color = Text.copy(alpha = 0.6f))
|
|
|
}
|
|
|
}
|
|
|
- Spacer(
|
|
|
- Modifier
|
|
|
- .size(8.dp)
|
|
|
- .clip(RoundedCornerShape(50))
|
|
|
- .background(if (msg.readStatus) Color.Transparent else Color(0xFFFF4500))
|
|
|
- .align(Alignment.CenterVertically)
|
|
|
- )
|
|
|
+// Spacer(
|
|
|
+// Modifier
|
|
|
+// .size(8.dp)
|
|
|
+// .clip(RoundedCornerShape(50))
|
|
|
+// .background(if (msg.readStatus) Color.Transparent else Color(0xFFFF4500))
|
|
|
+// .align(Alignment.CenterVertically)
|
|
|
+// )
|
|
|
}
|
|
|
}
|
|
|
}
|