我有文字名称.当我写下这个名字时,它会直接排成一行.我希望它到达下一行后达到文本字段的宽度.当我使用multiline =’true’时,我得到了错误: Error while updating property ‘multiline’ of a
Error while updating property ‘multiline’ of a view managed by:
Android TextInput.
这是我的代码:
<TextField label = {'Name :'} highlightColor = {'#00BCD4'} style = {{height: 40}} multiline = 'true' />将multiline =’true’更改为multiline = {true},属性的值需要是布尔值,而不是字符串
<TextField label = {'Name :'} highlightColor = {'#00BCD4'} style = {{height: 40}} multiline = {true} />
你确定它是TextField而不是TextInput吗?
https://facebook.github.io/react-native/docs/textinput.html