fix text overflow

This commit is contained in:
Salvatore Giordano
2020-11-06 11:31:23 +01:00
parent df9b5100b8
commit 7463b4f725
+3 -1
View File
@@ -729,11 +729,13 @@ class MessageInputState extends State<MessageInput> {
color: StreamChatTheme.of(context).accentColor, color: StreamChatTheme.of(context).accentColor,
), ),
), ),
Text( Flexible(
child: Text(
'Emoji matching "$query"', 'Emoji matching "$query"',
style: TextStyle( style: TextStyle(
color: Colors.black.withOpacity(.5), color: Colors.black.withOpacity(.5),
), ),
),
) )
], ],
), ),