fix: login form supports switching fields via tab
This commit is contained in:
parent
f335cdbaf6
commit
fcc0d9d15f
1 changed files with 2 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ class LoginView extends StatelessWidget {
|
||||||
autofocus: true,
|
autofocus: true,
|
||||||
onChanged: controller.checkWellKnownWithCoolDown,
|
onChanged: controller.checkWellKnownWithCoolDown,
|
||||||
controller: controller.usernameController,
|
controller: controller.usernameController,
|
||||||
|
textInputAction: TextInputAction.next,
|
||||||
keyboardType: TextInputType.emailAddress,
|
keyboardType: TextInputType.emailAddress,
|
||||||
autofillHints:
|
autofillHints:
|
||||||
controller.loading ? null : [AutofillHints.username],
|
controller.loading ? null : [AutofillHints.username],
|
||||||
|
|
@ -56,6 +57,7 @@ class LoginView extends StatelessWidget {
|
||||||
autofillHints:
|
autofillHints:
|
||||||
controller.loading ? null : [AutofillHints.password],
|
controller.loading ? null : [AutofillHints.password],
|
||||||
controller: controller.passwordController,
|
controller: controller.passwordController,
|
||||||
|
textInputAction: TextInputAction.next,
|
||||||
obscureText: !controller.showPassword,
|
obscureText: !controller.showPassword,
|
||||||
onSubmitted: controller.login,
|
onSubmitted: controller.login,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue