MichaelCereda / react-native-form-generator

Generate forms with native look and feel in a breeze
MIT License
377 stars 105 forks source link

Autogrow on input #114

Open arelstone opened 7 years ago

arelstone commented 7 years ago

I'm not sure if this is a bug.

A InputField with the autogrow is not the correct height, but as soon as you change the the input value the InputField expands

ezgif-1-9f46ce5320

I have this block of code:

<InputField ref='description'
  multiline={true}
  numberOfLines={10}
  placeholder='Description'
  value={item.description}
/>

I see that the numberOfLines prop is only available on Android platform.

Thanks in advance