File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" :" react-native-form-builder" ,
3- "version" :" 1.0.9 " ,
3+ "version" :" 1.0.10 " ,
44 "description" :" Generate Awesome Forms In an easy way" ,
55 "main" :" src/index.js" ,
66 "scripts" :{
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export default class FormBuilder extends Component {
1515 static propTypes = {
1616 fields : React . PropTypes . array ,
1717 theme : React . PropTypes . object ,
18+ scrollViewProps : React . PropTypes . object ,
1819 customComponents : React . PropTypes . object ,
1920 formData : React . PropTypes . object ,
2021 autoValidation : React . PropTypes . bool ,
@@ -291,6 +292,7 @@ export default class FormBuilder extends Component {
291292 < KeyboardAwareScrollView
292293 keyboardShouldPersistTaps = "always"
293294 extraScrollHeight = { 20 }
295+ { ...this . props . scrollViewProps }
294296 >
295297 < View >
296298 { this . generateFields ( ) || < View /> }
You can’t perform that action at this time.
0 commit comments