From f3c4e232681d78219dc0805c483b7f8352926494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Tue, 7 Jul 2026 14:05:37 +0200 Subject: [PATCH] chore: follow up maxlines in chatbar --- lib/pages/chat/chat_app_bar_title.dart | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/pages/chat/chat_app_bar_title.dart b/lib/pages/chat/chat_app_bar_title.dart index 73e0ee30b4..6305f453ca 100644 --- a/lib/pages/chat/chat_app_bar_title.dart +++ b/lib/pages/chat/chat_app_bar_title.dart @@ -112,6 +112,7 @@ class ChatAppBarTitle extends StatelessWidget { child: Text( statusMessage, style: style, + maxLines: 1, ), ), ], @@ -130,12 +131,17 @@ class ChatAppBarTitle extends StatelessWidget { .mInvitedMemberCount ?? 0), ), + maxLines: 1, style: style, ), if (room.topic.isNotEmpty) ...[ Text(' ◦ ', style: style), Expanded( - child: Text(room.topic, style: style), + child: Text( + room.topic, + style: style, + maxLines: 1, + ), ), ], ],