From 6c51f3948c4962dbc983f1e73973418e608b601e Mon Sep 17 00:00:00 2001 From: Lucas Reis Date: Wed, 2 Apr 2025 11:40:10 -0300 Subject: [PATCH] feat: enabling autofill on inputs on the Login page (#8729) --- app/screens/login/form.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/screens/login/form.tsx b/app/screens/login/form.tsx index ca25b43cb..be633f46a 100644 --- a/app/screens/login/form.tsx +++ b/app/screens/login/form.tsx @@ -316,6 +316,7 @@ const LoginForm = ({config, extra, keyboardAwareRef, serverDisplayName, launchEr autoCapitalize={'none'} blurOnSubmit={false} containerStyle={styles.inputBoxEmail} + autoComplete='email' disableFullscreenUI={true} enablesReturnKeyAutomatically={true} error={error ? ' ' : ''} @@ -336,6 +337,7 @@ const LoginForm = ({config, extra, keyboardAwareRef, serverDisplayName, launchEr autoCapitalize={'none'} blurOnSubmit={false} containerStyle={styles.inputBoxPassword} + autoComplete='current-password' disableFullscreenUI={true} enablesReturnKeyAutomatically={true} error={error}