Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions clients/shared/Features/Chat/TypingIndicatorView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ public struct TypingIndicatorView: View {
RoundedRectangle(cornerRadius: VRadius.lg)
.fill(VColor.surfaceOverlay)
)
// Isolate the repeatForever scale animation from parent geometry
// changes. Without this barrier, LazyVStack repositioning or outer
// .frame(width:) resize (containerWidth 0→actual) gets captured by
// the persistent animation context, causing the dots to bounce in
// position instead of just pulsing in scale.
.geometryGroup()
.onAppear {
animate = true
}
Expand Down