├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── example ├── app.json ├── babel.config.js ├── index.js ├── metro.config.js ├── package.json ├── src │ ├── App.tsx │ └── types.d.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock ├── lib ├── commonjs │ ├── colors.js │ ├── colors.js.map │ ├── components │ │ ├── Form │ │ │ ├── Form.test.js │ │ │ ├── Form.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── FormItem │ │ │ ├── FormItem.test.js │ │ │ ├── FormItem.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── Label │ │ │ ├── Label.test.js │ │ │ ├── Label.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── Modal.js │ │ ├── Modal.js.map │ │ ├── Picker.js │ │ ├── Picker.js.map │ │ ├── PinInput.js │ │ ├── PinInput.js.map │ │ └── _icons │ │ │ ├── ShowTextIcon.js │ │ │ └── ShowTextIcon.js.map │ ├── index.js │ └── index.js.map ├── module │ ├── colors.js │ ├── colors.js.map │ ├── components │ │ ├── Form │ │ │ ├── Form.test.js │ │ │ ├── Form.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── FormItem │ │ │ ├── FormItem.test.js │ │ │ ├── FormItem.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── Label │ │ │ ├── Label.test.js │ │ │ ├── Label.test.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── Modal.js │ │ ├── Modal.js.map │ │ ├── Picker.js │ │ ├── Picker.js.map │ │ ├── PinInput.js │ │ ├── PinInput.js.map │ │ └── _icons │ │ │ ├── ShowTextIcon.js │ │ │ └── ShowTextIcon.js.map │ ├── index.js │ └── index.js.map └── typescript │ ├── colors.d.ts │ ├── components │ ├── Form │ │ └── index.d.ts │ ├── FormItem │ │ └── index.d.ts │ ├── Label │ │ └── index.d.ts │ ├── Modal.d.ts │ ├── Picker.d.ts │ ├── PinInput.d.ts │ └── _icons │ │ └── ShowTextIcon.d.ts │ └── index.d.ts ├── package.json ├── scripts └── bootstrap.js ├── src ├── colors.ts ├── components │ ├── Form │ │ ├── Form.test.js │ │ └── index.tsx │ ├── FormItem │ │ ├── FormItem.test.js │ │ └── index.tsx │ ├── Label │ │ ├── Label.test.js │ │ └── index.tsx │ ├── Modal │ │ ├── Modal.test.js │ │ └── index.tsx │ ├── Picker │ │ ├── Picker.test.js │ │ └── index.tsx │ ├── PinInput │ │ ├── PinInput.test.js │ │ └── index.tsx │ └── _icons │ │ └── ShowTextIcon.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/index.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/types.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-native-form-component'; 2 | -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /lib/commonjs/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/colors.js -------------------------------------------------------------------------------- /lib/commonjs/colors.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/colors.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Form/Form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Form/Form.test.js -------------------------------------------------------------------------------- /lib/commonjs/components/Form/Form.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Form/Form.test.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Form/index.js -------------------------------------------------------------------------------- /lib/commonjs/components/Form/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Form/index.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/FormItem/FormItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/FormItem/FormItem.test.js -------------------------------------------------------------------------------- /lib/commonjs/components/FormItem/FormItem.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/FormItem/FormItem.test.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/FormItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/FormItem/index.js -------------------------------------------------------------------------------- /lib/commonjs/components/FormItem/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/FormItem/index.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Label/Label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Label/Label.test.js -------------------------------------------------------------------------------- /lib/commonjs/components/Label/Label.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Label/Label.test.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Label/index.js -------------------------------------------------------------------------------- /lib/commonjs/components/Label/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Label/index.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Modal.js -------------------------------------------------------------------------------- /lib/commonjs/components/Modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Modal.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Picker.js -------------------------------------------------------------------------------- /lib/commonjs/components/Picker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/Picker.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/PinInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/PinInput.js -------------------------------------------------------------------------------- /lib/commonjs/components/PinInput.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/PinInput.js.map -------------------------------------------------------------------------------- /lib/commonjs/components/_icons/ShowTextIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/_icons/ShowTextIcon.js -------------------------------------------------------------------------------- /lib/commonjs/components/_icons/ShowTextIcon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/components/_icons/ShowTextIcon.js.map -------------------------------------------------------------------------------- /lib/commonjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/index.js -------------------------------------------------------------------------------- /lib/commonjs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/commonjs/index.js.map -------------------------------------------------------------------------------- /lib/module/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/colors.js -------------------------------------------------------------------------------- /lib/module/colors.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/colors.js.map -------------------------------------------------------------------------------- /lib/module/components/Form/Form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Form/Form.test.js -------------------------------------------------------------------------------- /lib/module/components/Form/Form.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Form/Form.test.js.map -------------------------------------------------------------------------------- /lib/module/components/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Form/index.js -------------------------------------------------------------------------------- /lib/module/components/Form/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Form/index.js.map -------------------------------------------------------------------------------- /lib/module/components/FormItem/FormItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/FormItem/FormItem.test.js -------------------------------------------------------------------------------- /lib/module/components/FormItem/FormItem.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/FormItem/FormItem.test.js.map -------------------------------------------------------------------------------- /lib/module/components/FormItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/FormItem/index.js -------------------------------------------------------------------------------- /lib/module/components/FormItem/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/FormItem/index.js.map -------------------------------------------------------------------------------- /lib/module/components/Label/Label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Label/Label.test.js -------------------------------------------------------------------------------- /lib/module/components/Label/Label.test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Label/Label.test.js.map -------------------------------------------------------------------------------- /lib/module/components/Label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Label/index.js -------------------------------------------------------------------------------- /lib/module/components/Label/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Label/index.js.map -------------------------------------------------------------------------------- /lib/module/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Modal.js -------------------------------------------------------------------------------- /lib/module/components/Modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Modal.js.map -------------------------------------------------------------------------------- /lib/module/components/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Picker.js -------------------------------------------------------------------------------- /lib/module/components/Picker.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/Picker.js.map -------------------------------------------------------------------------------- /lib/module/components/PinInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/PinInput.js -------------------------------------------------------------------------------- /lib/module/components/PinInput.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/PinInput.js.map -------------------------------------------------------------------------------- /lib/module/components/_icons/ShowTextIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/_icons/ShowTextIcon.js -------------------------------------------------------------------------------- /lib/module/components/_icons/ShowTextIcon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/components/_icons/ShowTextIcon.js.map -------------------------------------------------------------------------------- /lib/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/index.js -------------------------------------------------------------------------------- /lib/module/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/module/index.js.map -------------------------------------------------------------------------------- /lib/typescript/colors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/colors.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/Form/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/Form/index.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/FormItem/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/FormItem/index.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/Label/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/Label/index.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/Modal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/Modal.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/Picker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/Picker.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/PinInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/PinInput.d.ts -------------------------------------------------------------------------------- /lib/typescript/components/_icons/ShowTextIcon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/components/_icons/ShowTextIcon.d.ts -------------------------------------------------------------------------------- /lib/typescript/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/lib/typescript/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/components/Form/Form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Form/Form.test.js -------------------------------------------------------------------------------- /src/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Form/index.tsx -------------------------------------------------------------------------------- /src/components/FormItem/FormItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/FormItem/FormItem.test.js -------------------------------------------------------------------------------- /src/components/FormItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/FormItem/index.tsx -------------------------------------------------------------------------------- /src/components/Label/Label.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Label/Label.test.js -------------------------------------------------------------------------------- /src/components/Label/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Label/index.tsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Modal/Modal.test.js -------------------------------------------------------------------------------- /src/components/Modal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Modal/index.tsx -------------------------------------------------------------------------------- /src/components/Picker/Picker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Picker/Picker.test.js -------------------------------------------------------------------------------- /src/components/Picker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/Picker/index.tsx -------------------------------------------------------------------------------- /src/components/PinInput/PinInput.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/PinInput/PinInput.test.js -------------------------------------------------------------------------------- /src/components/PinInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/PinInput/index.tsx -------------------------------------------------------------------------------- /src/components/_icons/ShowTextIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/components/_icons/ShowTextIcon.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klazbaba/react-native-form-component/HEAD/yarn.lock --------------------------------------------------------------------------------