We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aff02c commit 0552de4Copy full SHA for 0552de4
Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageContainerView.swift
@@ -90,7 +90,6 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
90
isFirst: showsAllInfo,
91
scrolledId: $scrolledId
92
)
93
- .animation(nil)
94
.overlay(
95
ZStack {
96
reactionsShown ?
@@ -276,7 +275,7 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
276
275
}
277
278
private func setOffsetX(value: CGFloat) {
279
- withAnimation {
+ withAnimation(.easeInOut) {
280
self.offsetX = value
281
282
0 commit comments