gpt4 book ai didi

react-native - react-native 中 textarea 的替代方案是什么?

转载 作者:行者123 更新时间:2023-12-03 09:13:05 27 4
gpt4 key购买 nike

是否有用于 react-native 的内置文本区域组件?我试图实现这些:

https://github.com/buildo/react-autosize-textarea

https://github.com/andreypopp/react-textarea-autosize

但收到错误“预期组件类得到了对象对象”。

最佳答案

就在这里。它叫做 TextInput,普通的 TextInput 组件支持多行。

只需将以下属性分配给您的 TextInput 组件

multiline = {true}
numberOfLines = {4}

最后你应该有这个:
<TextInput
multiline={true}
numberOfLines={4}
onChangeText={(text) => this.setState({text})}
value={this.state.text}/>

来源 https://facebook.github.io/react-native/docs/textinput

关于react-native - react-native 中 textarea 的替代方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41678570/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com