Clean up design

This commit is contained in:
Christian Pauly 2020-06-20 11:35:54 +02:00
commit 48b2f702ad
5 changed files with 14 additions and 12 deletions

View file

@ -155,7 +155,7 @@ class _SignUpState extends State<SignUp> {
L10n.of(context).signUp.toUpperCase(),
style: TextStyle(color: Colors.white, fontSize: 16),
),
onPressed: () => loading ? null : signUpAction(context),
onPressed: loading ? null : () => signUpAction(context),
),
),
),