From d426bf1eb65e409ddd416f4b318e11006274bfb9 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 17 Apr 2021 09:15:56 +0200 Subject: [PATCH] Fix overflow --- lib/ui/routes/forgot_password_route.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ui/routes/forgot_password_route.dart b/lib/ui/routes/forgot_password_route.dart index bbdfbae..0e4fd58 100644 --- a/lib/ui/routes/forgot_password_route.dart +++ b/lib/ui/routes/forgot_password_route.dart @@ -147,10 +147,10 @@ class _ResetPasswordBodyState extends SafeState<_ResetPasswordBody> { Text(tr("Here are your options to reset your account:")), _Spacer(), OutlinedButton.icon( - onPressed: _openSendEmailDialog, - icon: Icon(Icons.email), - label: Text(tr("Send us an email to ask for help")), - ), + onPressed: _openSendEmailDialog, + icon: Icon(Icons.email), + label: Flexible( + child: Text(tr("Send us an email to ask for help")))), _Spacer(visible: _hasSecurityQuestions), _hasSecurityQuestions ? OutlinedButton.icon(