It’s Cybersecurity Awareness Month! Join our interactive training session, or learn about security and AI from 1Password experts.
 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],
  // ...
)
