File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Sources/StreamChatSwiftUI/ChatChannel/MessageList Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9
9
- Added a configurable separator view for new messages
10
10
- Possibility to customize the cornerRadius of the ` ComposerInputView `
11
11
12
+ ### 🐞 Fixed
13
+ - Message List layout for iPad in Slide Over mode
14
+
12
15
# [ 4.26.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.26.0 )
13
16
_ January 16, 2023_
14
17
Original file line number Diff line number Diff line change 56
56
<string >armv7 </string >
57
57
</array >
58
58
<key >UIRequiresFullScreen </key >
59
- <true />
59
+ <false />
60
60
<key >UISupportedInterfaceOrientations </key >
61
61
<array >
62
62
<string >UIInterfaceOrientationPortrait </string >
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public struct MessageDisplayOptions {
148
148
149
149
public static var defaultSpacerWidth : ( CGFloat ) -> ( CGFloat ) {
150
150
{ availableWidth in
151
- if isIPad {
151
+ if isIPad && availableWidth > 500 {
152
152
return 2 * availableWidth / 3
153
153
} else {
154
154
return availableWidth / 4
You can’t perform that action at this time.
0 commit comments