react-native – React Native Password TextInput抛出警告

前端之家收集整理的这篇文章主要介绍了react-native – React Native Password TextInput抛出警告前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个TextInput字段,我想用于密码
<TextInput secureTextEntry="true"></TextInput>

但我一直在iOS模拟器和chrome调试工具中收到此警告

Failed propType: Invalid prop `secureTextEntry` of type `string` supplied to `TextInput`,expected `boolean`.

我正在“反应原生”:“^ 0.16.0”

试试这个:
<TextInput secureTextEntry={ true }></TextInput>
原文链接:https://www.f2er.com/react/301104.html

猜你在找的React相关文章