feat: enabling autofill on inputs on the Login page (#8729)
This commit is contained in:
parent
7be0de3202
commit
6c51f3948c
1 changed files with 2 additions and 0 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue