Prevent React native input line breaks

59 Views Asked by At

just wondering if there's a way to prevent React Native Text Input from breaking text into multiple lines when text is long enter image description here

1

There are 1 best solutions below

1
nazmul On

Just use multiline and numberOflines props like following ,

<TextInput multiline={false} numberOfLines={1}  />