I'm wondering why numberOfLines
won't set a limit of six lines while maxLength
does work on the same TextInput
and limits the user's input to 140 char.
Here's my code (simplified):
<TextInput
maxLength={140}
multiline={true}
numberOfLines={6}
/>