flutter login example
Hello
I am building a flutter app that integrates with AWS cognito.
In my custom Login Screen, I use flutter TextFormField and specify :
TextFormField(....
autofillHints: const [AutofillHints.username],
...)
TextFormField(...
autofillHints: const [AutofillHints.password],
...),
)
However, when the focus is on just the password, and the 1password prompt appears to suggest an auto-fill, it will only autofill the item that has the focus, not both username and password.
How do I get 1password to auto-fill both username and password from one action?
Right now, I have to change the focus on each field, and have 1password auto-fill those fields individually.
