我有一个TextInput字段,我想用于密码
<TextInput secureTextEntry="true"></TextInput>
但我一直在iOS模拟器和chrome调试工具中收到此警告
Failed propType: Invalid prop `secureTextEntry` of type `string` supplied to `TextInput`,expected `boolean`.
我正在“反应原生”:“^ 0.16.0”
试试这个:
原文链接:https://www.f2er.com/react/301104.html<TextInput secureTextEntry={ true }></TextInput>