feat: Optimize animations in OnboardingScreen and improve MessageInputBar visibility transitions
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user