react-native-gifted-form
react-native-gifted-form copied to clipboard
TextAreaWidget is looking really bad in Android

Anyone saw this issue before? Any clue on how to solve it? @FaridSafi @cooperka BTW, it's working properly on iOS
Not good! Would you mind submitting a PR to fix this please?
@cooperka I forgot to mention that I was able to fix it with this workaround:
<GiftedForm.TextAreaWidget
name="body"
title="Details"
placeholder="Details of your listing"
widgetStyles={{
textArea: {
width: Layout.window.width - 20
}
}}
/>
Facing the same issue...can anybody suggest any alternative
Just ran into this issue. I was able to get it working by using Dimensions.get('window').width in place of Layout.window.width