react-native-form-builder
react-native-form-builder copied to clipboard
Handle your forms in a smart way
Is it supporting cascading dropdown?
Fix #1, #10, #22, #37. @bietkul: Please merge! :pray:
Fixing the following issue: https://github.com/bietkul/react-native-form-builder/issues/1 The release was updated for iOS and Not android
As [react-native-i18n](https://github.com/AlexanderZaytsev/react-native-i18n) is deprecated and throws an error of not resolveable _RNI18n.languages_ I recommend to replace it with `moment`. In addition it uses the localized format.
Please can u grant me access to your code to make a little adjustment
package.json:-> { "name": "FormBuilderApp", "version": "0.0.1", "private": true, "scripts": { "start": "react-native start", "test": "jest", "lint": "eslint ." }, "dependencies": { "native-base": "^2.13.7", "react": "16.8.6", "react-native": "0.60.5", "react-native-form-builder": "^1.0.16" },...
Nice, work. Form *almost* does everything I need. I am keen on adding an image picker field type, allowing my user to attach photos to their form. Would you be...
Native base now supports icon type ``` Icon.propTypes = { ...IconNB.propTypes, style: PropTypes.oneOfType([ PropTypes.object, PropTypes.number, PropTypes.array ]), name: PropTypes.string, ios: PropTypes.string, android: PropTypes.string, active: PropTypes.bool, type: PropTypes.string }; ``` which...
If the label for a switch takes up more than one line it will push the switch off the screen before the text drops to the next line
This is a strange one. The form is working fine on Android. On iOS as soon as the keyboard shows up the form foes up and disappears in the containing...