fix: Wrap login form into AutofillGroup

This commit is contained in:
Sorunome 2021-08-08 19:30:51 +02:00
parent 9632190b16
commit e2a194484f
No known key found for this signature in database
GPG Key ID: B19471D07FC9BE9C

View File

@ -26,7 +26,8 @@ class LoginView extends StatelessWidget {
), ),
), ),
body: Builder(builder: (context) { body: Builder(builder: (context) {
return ListView( return AutofillGroup(
child: ListView(
children: <Widget>[ children: <Widget>[
Padding( Padding(
padding: const EdgeInsets.all(12.0), padding: const EdgeInsets.all(12.0),
@ -98,6 +99,7 @@ class LoginView extends StatelessWidget {
), ),
), ),
], ],
),
); );
}), }),
), ),