Skip to content

Commit 16ea952

Browse files
committed
chore(fc): remove fade/scale from chattable area transitions
Signed-off-by: Brandon McAnsh <[email protected]>
1 parent 68b2ce9 commit 16ea952

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

flipchatApp/src/main/kotlin/xyz/flipchat/app/features/chat/conversation/ConversationScreen.kt

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -242,14 +242,7 @@ private fun ConversationScreenContent(
242242
AnimatedContent(
243243
targetState = state.chattableState,
244244
transitionSpec = {
245-
(slideInVertically(
246-
animationSpec = spring(
247-
dampingRatio = Spring.DampingRatioMediumBouncy,
248-
stiffness = Spring.StiffnessLow
249-
)
250-
) { it } + scaleIn() + fadeIn()).togetherWith(
251-
fadeOut() + scaleOut() + slideOutVertically { it }
252-
)
245+
(slideInVertically { it }).togetherWith(slideOutVertically { it })
253246
},
254247
label = "chat input area"
255248
) {

0 commit comments

Comments
 (0)