add animation to message list

This commit is contained in:
2026-07-17 11:14:22 +07:00
parent 3d4c9da3d6
commit 31bacbe330

View File

@@ -296,7 +296,9 @@ fun ChatScreen(
}
Column(
modifier = Modifier.fillMaxWidth(),
modifier = Modifier
.fillMaxWidth()
.animateItem(),
verticalArrangement = Arrangement.spacedBy(2.dp)
) {
replyPreview?.let { ReplyPreview(it, model.isMine) }