gpt4 book ai didi

react-native - 多行时 react native TextInput自动增长

转载 作者:行者123 更新时间:2023-12-04 22:18:22 24 4
gpt4 key购买 nike

我想创建一个TextInput,当它有多行时可以自动增长。

 <TextInput
placeholder="Type Comment"
value={this.state.comment.value}
onChangeText={value => this.onChangeComment(value)}
onPress={() => this.uploadComment()}
multiline={true}
maxLength={200}
numberOfLines={5}
/>

我怎样才能做到这一点?

最佳答案

认为React Native团队已使用multiline prop将其修复为当前版本(0.59)。

这对我有用

  <TextInput
style={{
width: '90%',
borderColor: 'gray',
borderWidth: 1,
padding: 2,
}}
multiline
onChangeText={text => this.setState({ text })}
value={this.state.text}
/>

关于react-native - 多行时 react native TextInput自动增长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50061756/

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