diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index 4ba5fb8e53..a0c7cc0333 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -199,7 +199,13 @@ class ChatView extends StatelessWidget { children: [ const Icon(Icons.search), const SizedBox(width: 12), - Text(L10n.of(context)!.search), + Expanded( + child: Text( + L10n.of(context)!.search, + maxLines: 1, + overflow: TextOverflow.ellipsis, + ), + ), ], ), )