react-native-gifted-form icon indicating copy to clipboard operation
react-native-gifted-form copied to clipboard

TextAreaWidget is looking really bad in Android

Open eliasturbay opened this issue 8 years ago • 4 comments

20187450_1919320644989712_1457344416_o

Anyone saw this issue before? Any clue on how to solve it? @FaridSafi @cooperka BTW, it's working properly on iOS

eliasturbay avatar Jul 19 '17 18:07 eliasturbay

Not good! Would you mind submitting a PR to fix this please?

cooperka avatar Jul 19 '17 18:07 cooperka

@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
              }
            }}
          />

eliasturbay avatar Aug 01 '17 11:08 eliasturbay

Facing the same issue...can anybody suggest any alternative

rajatbeck avatar Sep 26 '17 13:09 rajatbeck

Just ran into this issue. I was able to get it working by using Dimensions.get('window').width in place of Layout.window.width

matthewcoupal avatar Dec 31 '17 00:12 matthewcoupal