Merge pull request #1098 from GetStream/fix/reaction_card_text_overflow

fix(ui): Name text overflow in reaction card
This commit is contained in:
Salvatore Giordano
2022-04-22 13:26:35 +02:00
committed by GitHub
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
## Upcoming
🐞 Fixed
- [[#842]](https://github.com/GetStream/stream-chat-flutter/issues/842): show date divider for first message.
- [[#1067]](https://github.com/GetStream/stream-chat-flutter/issues/1067): Fix name text overflow in reaction card.
- [[#842]](https://github.com/GetStream/stream-chat-flutter/issues/842): show date divider for first message.
## 3.6.1
@@ -236,6 +236,8 @@ class MessageReactionsModal extends StatelessWidget {
reaction.user!.name.split(' ')[0],
style: chatThemeData.textTheme.footnoteBold,
textAlign: TextAlign.center,
overflow: TextOverflow.ellipsis,
maxLines: 1,
),
],
),