File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Sources/StreamChatSwiftUI/Utils Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
33
44# Upcoming
55
6+ ### β
Added
7+ - Implement message resend functionality
8+ - Custom modifiers support for the message view and the composer
9+ - Custom modifiers support for the channel list and the message list
10+ - Changing text color per message sender
11+
12+ ### π Fixed
13+ - Improved TabView appeareance animation
14+ - Channel list performance improvements
15+ - Jumbo emoji reply not shown correctly
16+ - Send message animation improvements
17+
618### π Changed
19+ - Method for creating custom quoted message view
720
821# [ 4.12.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.12.0 )
922_ March 17, 2022_
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ extension KeyboardReadable {
4444 public var keyboardHeight : AnyPublisher < CGFloat , Never > {
4545 NotificationCenter
4646 . default
47- . publisher ( for: UIResponder . keyboardWillShowNotification )
47+ . publisher ( for: UIResponder . keyboardDidShowNotification )
4848 . map { notification in
4949 if let keyboardFrame: NSValue = notification
5050 . userInfo ? [ UIResponder . keyboardFrameEndUserInfoKey] as? NSValue {
You canβt perform that action at this time.
0 commit comments