remove autofill from keyboard on andriod
This commit is contained in:
+6
@@ -233,6 +233,9 @@ export default function CreateCustodyAccountPage(props) {
|
||||
autoCapitalize="none"
|
||||
spellCheck={false}
|
||||
textContentType="none"
|
||||
importantForAutofill="no"
|
||||
keyboardType="visible-password"
|
||||
disableFullscreenUI={true}
|
||||
keyboardAppearance={theme ? 'dark' : 'light'}
|
||||
ref={ref => (keyRefs.current[item1] = ref)}
|
||||
value={inputedKey[`key${item1}`]}
|
||||
@@ -260,6 +263,9 @@ export default function CreateCustodyAccountPage(props) {
|
||||
autoCapitalize="none"
|
||||
spellCheck={false}
|
||||
textContentType="none"
|
||||
importantForAutofill="no"
|
||||
keyboardType="visible-password"
|
||||
disableFullscreenUI={true}
|
||||
keyboardAppearance={theme ? 'dark' : 'light'}
|
||||
ref={ref => (keyRefs.current[item2] = ref)}
|
||||
value={inputedKey[`key${item2}`]}
|
||||
|
||||
@@ -277,6 +277,7 @@ export default function RestoreWallet({
|
||||
textContentType="none"
|
||||
importantForAutofill="no"
|
||||
keyboardType="visible-password"
|
||||
disableFullscreenUI={true}
|
||||
keyboardAppearance={theme ? 'dark' : 'light'}
|
||||
ref={ref => (keyRefs.current[item1] = ref)}
|
||||
value={inputedKey[`key${item1}`]}
|
||||
@@ -305,6 +306,7 @@ export default function RestoreWallet({
|
||||
textContentType="none"
|
||||
importantForAutofill="no"
|
||||
keyboardType="visible-password"
|
||||
disableFullscreenUI={true}
|
||||
keyboardAppearance={theme ? 'dark' : 'light'}
|
||||
ref={ref => (keyRefs.current[item2] = ref)}
|
||||
value={inputedKey[`key${item2}`]}
|
||||
|
||||
Reference in New Issue
Block a user