react native TextInput高度自增长
效果:
代码:
<TextInput placeholder={"备注"} selectionColor={Colors.blackColor} underlineColorAndroid="transparent" placeholderTextColor={Colors.grayColor} multiline={true} onContentSizeChange={this._onContentSizeChange.bind(this)} style={{ fontSize: 14, color: Colors.balckColor, height: Math.max(25, this.state.height), lineHeight: 20 }} />
_onContentSizeChange(event) { this.setState({ height: event.nativeEvent.contentSize.height }); console.log("height", height); }
问题:TextInput高度自增长时视图会明显抖动,用户体验不好
这个人暂时没有 freestyle