自动填充不适用于android react native

mfuanj7w  于 2022-12-14  发布在  React
关注(0)|答案(1)|浏览(185)
<TextInput
     autoCompleteType="username"
     importantForAutofill="yes"
      /><TextInput
         autoCompleteType="password"
        importantForAutofill="yes"
      />

我已经按照react-native中的指导添加了此代码,但在我的android应用程序中,从谷歌或任何不工作的自动填充密码。提前感谢。

gblwokeq

gblwokeq1#

对于RN〉0.66的两个平台的工作解是:

<TextInput
  textContentType="password"
  autoComplete="password"
/>

(请参阅:)
autoComplete-安卓系统(https://reactnative.dev/docs/0.66/textinput#autocomplete-android)

相关问题