Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
4 years agoAutofill password field not triggering on (Android devices) for Flutter
Password field in Flutter, working fine with Iphones but for Android the password field is never autofilling.
1Password Version: Not Provided
Extension Version: Not Provided
OS Version: No...
rekire
3 years agoNew Contributor
That is a great improvement, but in my app the username field is not detected. However when I click on the password field it is working already. Is there something wrong with my code or your implementation?
Here is my simplified dart code:
dart
TextFormField(
textInputAction: TextInputAction.next,
keyboardType: TextInputType.emailAddress,
autofillHints: const [AutofillHints.username, AutofillHints.email],
// ...
),
TextFormField(
obscureText: _isObscure,
textInputAction: TextInputAction.send,
keyboardType: TextInputType.visiblePassword,
autofillHints: const [AutofillHints.password],
// ...
)