Hi everyone,
So currently I'm creating a client rendering app with react-router and eventually I'm going to be porting it over to Remix/React-Router v6.4. However, there is one part of the app I'm not comfortable that is the dynamic form part.
Usually I would use something like Formik for form management so I can easily update form data, however, Remix uses the <Form/> which uses native web features like the formData so you can't access values as they are updated (Correct me If I'm wrong 😄).
What I want to be able to do is something like this:
- You uncheck a checkbox e.g. Filter by all countries
- Show's an additional field like a countires dropdown
OR
- Check a checkbox
- Programatically certain values
Is there a way to be able to able to achieve the abvoe functionality the Remix way or would I need to introduce something like Formik and just face it there is no other way 🤣
Any comments are greatly appreciated about this post. 😄
Thank's,
Alex