fix(ui): fix MessageInputTheme.linkHighlightColor returning null for default theme.

Signed-off-by: xsahil03x <xdsahil@gmail.com>
This commit is contained in:
Sahil Kumar
2023-05-15 15:29:55 +05:30
committed by xsahil03x
parent 13dce4d444
commit 7382cdb35f
2 changed files with 8 additions and 0 deletions
@@ -1,3 +1,10 @@
## Upcoming
🐞 Fixed
- [[#1546]](https://github.com/GetStream/stream-chat-flutter/issues/1546)
Fixed `StreamMessageInputTheme.linkHighlightColor` returning null for default theme.
## 6.1.0
🐞 Fixed
@@ -153,6 +153,7 @@ class StreamMessageInputThemeData with Diagnosticable {
sendButtonColor: sendButtonColor ?? this.sendButtonColor,
actionButtonIdleColor:
actionButtonIdleColor ?? this.actionButtonIdleColor,
linkHighlightColor: linkHighlightColor ?? this.linkHighlightColor,
expandButtonColor: expandButtonColor ?? this.expandButtonColor,
inputTextStyle: inputTextStyle ?? this.inputTextStyle,
sendButtonIdleColor: sendButtonIdleColor ?? this.sendButtonIdleColor,