useFormik
hook to directly provide all the Formik helpers needed. Here we can define the initial values of the input field, what happens when the form is submitted, and a validation schema.test
function to determine whether the file extension is .pdf
. We also have to test if the file size is not more than 3,145,728 bytes (3 megabytes).onChange
property. The function sets the value of the field to Formik's state by using the helper function setFieldValue
, a function Formik provides to set a field's value to something. It takes two arguments: the name of the field and the value to be set. The onChange
function looks like this:handleSubmit
helper function is passed into the form element's onSubmit
property. This will trigger Formik's own onSubmit
function.Posted Jan 15, 2025
Dealing with forms in React applications used to be tedious, but with libraries like Formik and Yup,... Tagged with react, tutorial, frontend, javascript.