Last active
September 24, 2018 20:58
-
-
Save janhesters/d72d9fa77b1406d7b32035d45966b62d to your computer and use it in GitHub Desktop.
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
| handleSubmit = (values: FormValues, formikBag: FormikActions<FormValues>) => { | |
| formikBag.setSubmitting(true); | |
| // Here you would usually make a call to your API for a login. | |
| setTimeout(() => { | |
| formikBag.setSubmitting(false); | |
| this.props.navigation.navigate("HomeScreen"); | |
| }, 3000); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment