FaridSafi / react-native-gifted-form

📝 « One React-Native form component to rule them all »
MIT License
1.44k stars 214 forks source link

Align label on top of widget #91

Open jesouhaite08 opened 7 years ago

jesouhaite08 commented 7 years ago

Is there a way to align the label on top of each widget, instead of side by side?

jesouhaite08 commented 7 years ago

I figured this out by adding the inline prop to my widget:

<GiftedForm.TextInputWidget
   name='fullName'
   title='Full Name'
   inline={false}
   clearButtonMode='while-editing'
/>

However, padding on the area where the user types is messed up:

screen shot 2016-12-05 at 8 29 10 am
jesouhaite08 commented 7 years ago

Created PR https://github.com/FaridSafi/react-native-gifted-form/pull/92