【发布时间】:2023-03-03 17:21:01
【问题描述】:
在 React Native 中,如何禁用或阻止键盘显示 Password Autofill 附件视图选项? TextInput 似乎没有处理禁用此选项的属性。 React Native TextInput Documentation。我还在 React Native 之上使用 Expo。
Password AutoFill was introduced in iOS 11
Image of Password AutoFill Accessory view option
这是一个帖子,其中包含禁用密码自动填充附件的解决方案,但是我们如何使用 React Native 来实现呢?
【问题讨论】:
-
你试过
autoCompleteType: 'off'吗? -
密码自动填充仍然显示为 autoCompleteType: 'off'
标签: ios reactjs react-native ios11 expo