Open asdf23 opened 4 years ago
Can you provide all your file ?
import ValidationComponent from 'react-native-form-validator'; // you need to import
class RegisterScreen extends ValidationComponent {} // make sure you change the component to ValidationComponent
_onSubmit() {
this.validate({
emailField: {email: true, required: true},
passwordField: {required: true}
});
}
WILL WORK FINE @arochedy @asdf23 @solved
Perhaps I'm not getting something, nothing in this package seems to work at all.