Skip to content

Instantly share code, notes, and snippets.

@singh100ful
Last active May 28, 2020 22:53
Show Gist options
  • Select an option

  • Save singh100ful/58faed1359c148ff7435c3f5aebc7e67 to your computer and use it in GitHub Desktop.

Select an option

Save singh100ful/58faed1359c148ff7435c3f5aebc7e67 to your computer and use it in GitHub Desktop.
React Native Form Validation
<Formik
initialValues={{ email: '', password: ''}}
validationSchema={yup.object().shape({
email: yup
.string()
.email('Invalid Email')
.required('Email is Required.'),
password: yup.string()
.min(6)
.required('Password is Required'),
})}
onSubmit={this.handleSubmit}>
{(formProps) => (
<View>
...
</View>
)}
</Formik>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment