Skip to content

Commit 14b07cf

Browse files
committed
Fix scrolling in the message list when presented with a sheet on iOS 26
1 parent 3109bca commit 14b07cf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1717
- `ParticipantInfoView`
1818
- `ChatThreadListItem`
1919
- Fix reading messages from muted users [#1063](https://github.com/GetStream/stream-chat-swiftui/pull/1063)
20+
- Fix scrolling in the message list when presented with a sheet on iOS 26 [#1065](https://github.com/GetStream/stream-chat-swiftui/pull/1065)
2021

2122
# [4.94.0](https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.94.0)
2223
_December 02, 2025_

Sources/StreamChatSwiftUI/ChatChannel/MessageList/MessageContainerView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public struct MessageContainerView<Factory: ViewFactory>: View {
140140
handleGestureForMessage(showsMessageActions: true)
141141
})
142142
.offset(x: min(self.offsetX, maximumHorizontalSwipeDisplacement))
143-
.simultaneousGesture(
143+
.gesture(
144144
DragGesture(
145145
minimumDistance: minimumSwipeDistance,
146146
coordinateSpace: .local

0 commit comments

Comments
 (0)