├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── Readme.md ├── examples └── example.gif ├── package.json ├── src ├── Form.js ├── Input.js ├── TextValidator.jsx ├── ValidationRules.jsx ├── index.js └── utils.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/Readme.md -------------------------------------------------------------------------------- /examples/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/examples/example.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/package.json -------------------------------------------------------------------------------- /src/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/Form.js -------------------------------------------------------------------------------- /src/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/Input.js -------------------------------------------------------------------------------- /src/TextValidator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/TextValidator.jsx -------------------------------------------------------------------------------- /src/ValidationRules.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/ValidationRules.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/src/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewOldMax/react-native-validator-form/HEAD/yarn.lock --------------------------------------------------------------------------------