remove autofill from keyboard on andriod

This commit is contained in:
Blake Kaufman
2026-07-12 08:21:33 -04:00
parent 7ac50bc39f
commit 00529933c3
2 changed files with 8 additions and 0 deletions
@@ -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}`]}