chore: Make error text on email orange and set displayname

This commit is contained in:
Christian Pauly 2022-06-02 09:54:38 +02:00
commit e5c29eedfe
3 changed files with 17 additions and 3 deletions

View file

@ -94,6 +94,9 @@ class SignupPageView extends StatelessWidget {
),
hintText: L10n.of(context)!.enterAnEmailAddress,
errorText: controller.error,
errorColor: controller.emailController.text.isEmpty
? Colors.orangeAccent
: null,
),
),
),