react-native-form-builder
react-native-form-builder copied to clipboard
Trigger validation on button clcik
I am unable to show validation message on button click. Kindly let me know how can I achieve this.
this code will work
// Returns the values of the fields and auto Validate
getValuesValidate() {
const values = {};
Object.keys(this.state.fields).forEach((fieldName) => {
const field = this.state.fields[fieldName];
if (field) {
values[field.name] = field.value;
}
this.onValueChange(field.name,field.value);
});
return values;
}