fix: login form supports switching fields via tab

onboarding
Philip Molares 3 years ago
parent f335cdbaf6
commit fcc0d9d15f

@ -38,6 +38,7 @@ class LoginView extends StatelessWidget {
autofocus: true,
onChanged: controller.checkWellKnownWithCoolDown,
controller: controller.usernameController,
textInputAction: TextInputAction.next,
keyboardType: TextInputType.emailAddress,
autofillHints:
controller.loading ? null : [AutofillHints.username],
@ -56,6 +57,7 @@ class LoginView extends StatelessWidget {
autofillHints:
controller.loading ? null : [AutofillHints.password],
controller: controller.passwordController,
textInputAction: TextInputAction.next,
obscureText: !controller.showPassword,
onSubmitted: controller.login,
decoration: InputDecoration(

Loading…
Cancel
Save