修复热门聊天室列表为空时仍然显示标题的问题

当热门聊天室数据为空时,隐藏其对应的标题和列表视图。
This commit is contained in:
2025-11-11 00:28:25 +08:00
parent 803b14139f
commit 784064b386

View File

@@ -277,6 +277,7 @@ fun Agent() {
} }
} }
if (viewModel.chatRooms.isNotEmpty()) {
// 热门聊天室 // 热门聊天室
stickyHeader(key = "hot_rooms_header") { stickyHeader(key = "hot_rooms_header") {
Row( Row(
@@ -322,6 +323,7 @@ fun Agent() {
} }
} }
} }
}
item { Spacer(modifier = Modifier.height(20.dp)) } item { Spacer(modifier = Modifier.height(20.dp)) }