From b83b529b8d643ec442f5941de04cfe50176263f9 Mon Sep 17 00:00:00 2001 From: k1ngsterr1 Date: Wed, 14 Jan 2026 02:43:58 +0500 Subject: [PATCH] feat: Optimize animation duration for message input panel in ChatDetailScreen --- .../java/com/rosetta/messenger/ui/chats/ChatDetailScreen.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/rosetta/messenger/ui/chats/ChatDetailScreen.kt b/app/src/main/java/com/rosetta/messenger/ui/chats/ChatDetailScreen.kt index 55306dc..a15caef 100644 --- a/app/src/main/java/com/rosetta/messenger/ui/chats/ChatDetailScreen.kt +++ b/app/src/main/java/com/rosetta/messenger/ui/chats/ChatDetailScreen.kt @@ -2310,11 +2310,11 @@ private fun MessageInputBar( visible = showPanel, enter = slideInVertically( initialOffsetY = { it }, // Снизу вверх - animationSpec = tween(200, easing = FastOutSlowInEasing) + animationSpec = tween(120, easing = FastOutSlowInEasing) ), exit = slideOutVertically( targetOffsetY = { it }, // Сверху вниз - animationSpec = tween(150, easing = FastOutSlowInEasing) + animationSpec = tween(100, easing = FastOutSlowInEasing) ) ) { Box(