反应原生密码autofill ios 11

时间:2017-10-15 21:13:01

标签: ios react-native passwords autofill

我做了一些研究,但在撰写本文时,我找不到任何与新的iOS 11密码自动填充系统集成的React Native应用程序。

我们是否需要使用权利证书(如此处所述:Password AutoFill for iOS Apphttps://willowtreeapps.com/ideas/password-autofill-in-ios-11

我不确定的部分是如何与React Native集成的?!

1 个答案:

答案 0 :(得分:4)

不幸的是,这需要React Native的TextInput来桥接本地UITextContentType。好消息是有一个开放拉取请求将添加此功能:

https://github.com/facebook/react-native/pull/18526

合并后,您可以支持密码自动填充,如下所示:

<TextInput
    value={this.state.username}
    textContentType="username"
/>
<TextInput
    value={this.state.password}
    secureTextEntry={true}
    textContentType="password"
/>