increase animation time

This commit is contained in:
Levitating Pineapple
2024-08-16 13:34:31 +03:00
parent 7e12dad716
commit 4005da2524
+1 -1
View File
@@ -1567,7 +1567,7 @@ struct FadeInChatItem: ViewModifier {
.onAppear {
if !isVisible {
Self.items.remove(chatItemId)
withAnimation { isVisible = true }
withAnimation(.easeInOut(duration: 0.5)) { isVisible = true }
}
}
}