Created
May 28, 2020 22:48
-
-
Save singh100ful/4b3c84edad587afead696223f4fe8a5d to your computer and use it in GitHub Desktop.
React Native Form Validation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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