Forms builder library for React Native
npm install tcomb-form-native-builder

tcomb-form-native-builder offer a React Native component that allow to define
a full formulary using JSON to define its fields, validations and behaviour.
``sh`
npm install tcomb-form-native-builder
In addition to tcomb-form-native
Form component
props, it accept the next ones:
- factories: mapping object name:Factory of extraname:validator
tcomb-form-native factories
that will be possible to use in the form.
- formats: mapping object of extrastring
tcomb-json-schema formats
that will be valid in fields.type
- onSubmit: callback function that will be called by a
submit component
after the form has been sucessfully send to the server.
- options: explicitly define
tcomb-form-native rendering options.
Alternatively you can also define them in the form description and theytcomb
both will be merged.
- type: definition of the form fields. Alternatively, you can also set it as
the JSX tag body. It can be a JSON string, a JSON object or a name:type
description object.
- types: mapping object of extra
tcomb-json-schema types
that will be possible to use to define the form fields.
If no form description is given (both as prop or as child node), it creates by
default a single Textbox (type string`, no format validation). This is
because we are not defining a structure (just a single value), nor we are
defining its type, so a generic one is being used. This behaviour is provided by
the tcomb-json-schema module.