Guest User

Untitled

a guest
Apr 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. this.state = {text: ""};
  2.  
  3. <TextInput
  4. style={{
  5. height: 200,
  6. width: 250,
  7. fontSize: 15,
  8. backgroundColor: 'white',
  9. }}
  10.  
  11. editable = {true}
  12. multiline = {true}
  13. numberofLines = {4}
  14. onChangeText={(text) => this.setState({text})}
  15. value={this.state.text}
  16. />
Add Comment
Please, Sign In to add comment