From af15c1ccbd7122feb87654e043ea6ced7c72f152 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sun, 14 Mar 2021 15:25:29 +0100 Subject: [PATCH] Fix text overflow --- lib/ui/screens/update_conversation_screen.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ui/screens/update_conversation_screen.dart b/lib/ui/screens/update_conversation_screen.dart index 861eb4e..e31bbf9 100644 --- a/lib/ui/screens/update_conversation_screen.dart +++ b/lib/ui/screens/update_conversation_screen.dart @@ -171,7 +171,9 @@ class _UpdateConversationScreen extends State { }) : null, ), - Text(tr("Allow all members of the conversation to add users")) + Flexible( + child: Text(tr( + "Allow all members of the conversation to add users"))) ], ),