diff --git a/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/continue_with_password_page.dart b/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/continue_with_password_page.dart index e898607e8b91f..1350df3d08a17 100644 --- a/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/continue_with_password_page.dart +++ b/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/continue_with_password_page.dart @@ -133,6 +133,7 @@ class _ContinueWithPasswordPageState extends State { hintText: LocaleKeys.signIn_enterPassword.tr(), autoFocus: true, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize, diff --git a/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart b/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart index 5a0560e2de0e6..1ba7ea0190946 100644 --- a/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart +++ b/frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/continue_with/set_new_password.dart @@ -145,6 +145,7 @@ class _SetNewPasswordWidgetState extends State { key: newPasswordKey, controller: newPasswordController, obscureText: true, + autofillHints: const [AutofillHints.password], hintText: LocaleKeys.signIn_enterNewPassword.tr(), onSubmitted: (_) => _validateAndSubmit(), ), @@ -160,6 +161,7 @@ class _SetNewPasswordWidgetState extends State { key: confirmPasswordKey, controller: confirmPasswordController, obscureText: true, + autofillHints: const [AutofillHints.password], hintText: LocaleKeys.signIn_confirmNewPassword.tr(), onSubmitted: (_) => _validateAndSubmit(), ), diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart index 22ff98cf5feb0..5d12ee3ea01a8 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/change_password.dart @@ -141,6 +141,7 @@ class _ChangePasswordDialogContentState .tr(), keyboardType: TextInputType.visiblePassword, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize, @@ -173,6 +174,7 @@ class _ChangePasswordDialogContentState .tr(), keyboardType: TextInputType.visiblePassword, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize, @@ -205,6 +207,7 @@ class _ChangePasswordDialogContentState .tr(), keyboardType: TextInputType.visiblePassword, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize, diff --git a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart index 16667d3d63bd2..b7a393dd78187 100644 --- a/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart +++ b/frontend/appflowy_flutter/lib/workspace/presentation/settings/pages/account/password/setup_password.dart @@ -136,6 +136,7 @@ class _SetupPasswordDialogContentState .tr(), keyboardType: TextInputType.visiblePassword, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize, @@ -168,6 +169,7 @@ class _SetupPasswordDialogContentState .tr(), keyboardType: TextInputType.visiblePassword, obscureText: true, + autofillHints: const [AutofillHints.password], suffixIconConstraints: BoxConstraints.tightFor( width: iconSize + theme.spacing.m, height: iconSize,