1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Fix overflow

This commit is contained in:
Pierre HUBERT 2021-04-17 09:15:56 +02:00
parent 7ec872d833
commit d426bf1eb6

View File

@ -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(