更新消息列表UI

This commit message summarizes the following changes:

* Removed `BottomNavigationPlaceholder` and replaced it with a `Spacer` to manage bottom
 spacing.
* Removed unnecessary `Spacer` and adjusted spacing around comment items for better visual layout.
* These changes improve the user interface of the message list.
This commit is contained in:
2024-09-06 18:16:38 +08:00
parent b5abc72682
commit eba9ca62ac

View File

@@ -152,7 +152,7 @@ fun NotificationsScreen() {
} }
} }
item { item {
BottomNavigationPlaceholder() Spacer(modifier = Modifier.height(72.dp))
} }
} }
} }
@@ -331,7 +331,6 @@ fun CommentNoticeItem(
} }
Spacer(modifier = Modifier.width(24.dp)) Spacer(modifier = Modifier.width(24.dp))
// Spacer(modifier = Modifier.weight(1f))
commentItem.post?.let { commentItem.post?.let {
CustomAsyncImage( CustomAsyncImage(
context = context, context = context,