feat: add some basic interactive animations #46

Merged
reya merged 4 commits from feat/animation into master 2026-07-17 09:27:40 +00:00
Showing only changes of commit 31bacbe330 - Show all commits

View File

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