Merge pull request #103 from yaso-meth/BUG--Google-Pass-Man-Autofill

remove autofil close
This commit is contained in:
yaso-meth 2025-03-11 15:07:09 +02:00 committed by GitHub
commit 7377518113
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,7 +185,7 @@ class _SignInState extends State<SignIn> {
} else {
await signUserIn();
if (successfulSignIn) {
TextInput.finishAutofillContext();
// TextInput.finishAutofillContext();
Navigator.of(context).pushNamedAndRemoveUntil('/', (route) => false);
}
}
@ -606,6 +606,7 @@ class _SignInState extends State<SignIn> {
emailController.dispose();
passwordController.dispose();
_focusNode.dispose();
TextInput.finishAutofillContext();
super.dispose();
}