We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there a way to get access to formik.isSubmitting within the form to disable the submit button?
formik.isSubmitting
The text was updated successfully, but these errors were encountered:
Just roll your own Form component like so:
import { Formik } from 'formik'; import { Form } from 'react-bootstrap'; export const FormikComponent = ({ children, ...props }) => ( <Formik {...props}> {(formikBag) => ( <Form onSubmit={formikBag.handleSubmit} onReset={formikBag.handleReset} > {children(formikBag)} </Form> )} </Formik> );
import { FormikComponent } from './formikComponent'; import { Form as RBF } from 'react-bootstrap-formik'; const { Input } = RBF; <FormikComponent initialValues={{ email: '' }} onSubmit={handleSubmit}> {({ isSubmitting }) => ( <Input name="email" label="Email" /> )} </FormikComponent>
Sorry, something went wrong.
No branches or pull requests
Is there a way to get access to
formik.isSubmitting
within the form to disable the submit button?The text was updated successfully, but these errors were encountered: