How to align text input correctly in react native? How to align text input correctly in react native? ios ios

How to align text input correctly in react native?


I had the same issue, but the above notes didn't solve it. There's an android-only style property textAlignVertical that fixes this issue on multiline inputs.

i.e. textAlignVertical: 'top'


TextInput has default padding, override it by setting:

paddingTop: 0,paddingBottom: 0

Github Issue


I have found the solution that in Android, TextInput style textAlignVertical: 'top' works. but in ios, TextInput prop multiline={true} works.