Skip to content

Instantly share code, notes, and snippets.

@janhesters
Last active September 24, 2018 20:58
Show Gist options
  • Save janhesters/d72d9fa77b1406d7b32035d45966b62d to your computer and use it in GitHub Desktop.
Save janhesters/d72d9fa77b1406d7b32035d45966b62d to your computer and use it in GitHub Desktop.
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