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

@ -184,7 +184,7 @@ class _LoginState extends State<Login> {
L10n.of(context).login.toUpperCase(),
style: TextStyle(color: Colors.white, fontSize: 16),
),
onPressed: () => loading ? null : login(context),
onPressed: loading ? null : () => login(context),
),
),
),