Skip to content

Instantly share code, notes, and snippets.

@singh100ful
Created May 28, 2020 22:48
Show Gist options
  • Select an option

  • Save singh100ful/4b3c84edad587afead696223f4fe8a5d to your computer and use it in GitHub Desktop.

Select an option

Save singh100ful/4b3c84edad587afead696223f4fe8a5d to your computer and use it in GitHub Desktop.
React Native Form Validation
<Formik initialValues={{ ... }} onSubmit={this.handleSubmit}>
{(formProps) => (
<View>
...
<Button
title="Log In"
disabled={!formProps.isValid}
onPress={formProps.handleSubmit}
/>
</View>
)}
</Formik>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment