Skip to content

Commit

Permalink
fix: search menu item overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian KOUNE authored and hoangdat committed Sep 26, 2023
1 parent c5de42f commit 6f93072
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lib/pages/chat/chat_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
),
],
),
)
Expand Down

0 comments on commit 6f93072

Please sign in to comment.