React Native TextInput auto grow when multilne

前端 未结 3 1140
后悔当初
后悔当初 2020-12-19 03:45

I want to create a TextInput which can grow automatically when it has multilines.

 

        
3条回答
  •  忘掉有多难
    2020-12-19 04:24

    Think that the React Native team fixed it in current version (0.59) with the multiline prop.

    This works for me

       this.setState({ text })}
        value={this.state.text}
      />
    

提交回复
热议问题