chore: Login design follow up dark mode fix

This commit is contained in:
Christian Pauly 2022-04-24 07:57:08 +02:00
commit 11f8eb61a1
5 changed files with 56 additions and 14 deletions

View file

@ -90,8 +90,12 @@ class ConnectPageView extends StatelessWidget {
child: TextField(
controller: controller.usernameController,
onSubmitted: (_) => controller.signUp(),
style: FluffyThemes.loginTextFieldStyle,
decoration: FluffyThemes.loginTextFieldDecoration(
prefixIcon: const Icon(Icons.account_box_outlined),
prefixIcon: const Icon(
Icons.account_box_outlined,
color: Colors.black,
),
hintText: L10n.of(context)!.chooseAUsername,
errorText: controller.signupError,
),