- Notifications
You must be signed in to change notification settings - Fork29.7k
Closed
Labels
P1High-priority issues at the top of the work lista: text inputEntering text in a text field or keyboard related problemsc: regressionIt was better in the past than it is nowcustomer: crowdAffects or could affect many people, though not necessarily a specific customer.engineflutter/engine related. See also e: labels.found in release: 2.3Found to occur in 2.3found in release: 2.4Found to occur in 2.4has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specifically
Description
We have a login form with just email and password
This used to work I think until 2.3.0-0.1.pre, and broke at 2.3.0-16.0.pre
I am not 100% sure which one was the upgrade that stopped it from working (I am sure it was one upgrade, though), but it was recently, and further upgrades have not solved the problem
The data is actually stored (i.e. I get the prompt to ask if I want to save/update the data in the browser and I can see it in settings -> autofill -> passwords) but there is no autofill happening on the password, the username/email only gets auto-filled
The code simplified
ListView( children:<Widget>[AutofillGroup( child:Column( children:<Widget>[TextFormField( controller: _emailTextController, autofillHints:const<String>[AutofillHints.username,AutofillHints.email ], ),TextFormField( controller: _passwordTextController, autofillHints:const<String>[AutofillHints.password], ),MyButton( label:'Sign In', onPressed: _login, ) ], ), ), ], ); }
Running flutter doctor...Doctor summary (to see all details, run flutter doctor -v):[✓] Flutter (Channel dev, 2.4.0-4.0.pre, on Linux Mint 20.1 5.4.0-58-generic, locale en_US.UTF-8)[✓] Chrome - develop for the web[✓] Linux toolchain - develop for Linux desktop[✓] Android Studio (version 4.1)[✓] Android Studio[✓] IntelliJ IDEA Ultimate Edition (version 2021.1)[✓] VS Code (version 1.56.2)[✓] Connected device (2 available)
Metadata
Metadata
Assignees
Labels
P1High-priority issues at the top of the work lista: text inputEntering text in a text field or keyboard related problemsc: regressionIt was better in the past than it is nowcustomer: crowdAffects or could affect many people, though not necessarily a specific customer.engineflutter/engine related. See also e: labels.found in release: 2.3Found to occur in 2.3found in release: 2.4Found to occur in 2.4has reproducible stepsThe issue has been confirmed reproducible and is ready to work onplatform-webWeb applications specifically