DEV Community

Discussion on: Formik === Final Form ??

Collapse
 
fkunecke profile image
fkunecke

Yesterday I switched from formik to final form for one of my signup flows. I really like formik's integration with yup, but I end up writing way less code using final form. Someone put together a gist for using yup with RFF. I would always dread putting together a formik form, now with final form it's been a breeze. Maybe I just did not understand the "formik way" but so far final form has been MUCH easier, especially when using Material UI.

Collapse
 
solarstar101 profile image
solarstar101

my company is actually doing the opposite we had issues with final form with our large dynamic forms (70+ fields) we had an issue with final form constantly re updating the fields. even after using subscriptions (very hard to integrate due to poor documentation)

subscriptions helped out dramatically but felt idiotic to have all these fields auto re render per type event.

Formiks documentation seems alot more friendlier and the overall concepts for setup between the two are the same so hopefully we have a better time with formik than final form