feat: Optimize animations in OnboardingScreen and improve MessageInputBar visibility transitions

This commit is contained in:
2026-01-15 23:42:52 +05:00
parent 80f5e436ee
commit 5919194471
2 changed files with 148 additions and 132 deletions

View File

@@ -2393,8 +2393,8 @@ private fun MessageInputBar(
// REPLY PANEL
AnimatedVisibility(
visible = hasReply,
enter = fadeIn(tween(150)) + expandVertically(),
exit = fadeOut(tween(100)) + shrinkVertically()
enter = fadeIn(tween(100)) + expandVertically(animationSpec = tween(100)),
exit = fadeOut(tween(0)) + shrinkVertically(animationSpec = tween(0))
) {
Row(
modifier = Modifier