react-native-paper
react-native-paper copied to clipboard
Fix "TextInput multiline text does not appear centered if only one line" #3752
Summary:
Fixes the Text input Outline Issue, if you pass Multiline as a prop, the first line will be adjusted to the top instead of the center.
Test plan:
In src/components/TextInput/TextInputOutlined.tsx
, changes textAlignVertical: multiline ? 'top' : 'center'
to
textAlignVertical: 'center'
Screenshots and Issues fixed:
https://imgur.com/a/kK0jffs Fixes #3752 Fixes #3786
Hey @AmrouKourchid, thank you for your pull request 🤗. The documentation from this branch can be viewed here.
hello @lukewalczak can you please review this ?
@AmrouKourchid any idea when this will be merged for production?
Isn't the textAlignVertical
prop only for android?