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
Users should have the option to persist and restore form state.
This is useful when persisting the state of the form is required (i.e. localStorage / AsyncStorage).
The only current option of restoring state is with multiple useField or mountField calls (not ideal).
useField
mountField
This should not encourage a pattern of setting initial values (i.e. useForm({ initialValues }).
useForm({ initialValues })
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
About
Users should have the option to persist and restore form state.
This is useful when persisting the state of the form is required (i.e. localStorage / AsyncStorage).
The only current option of restoring state is with multiple
useField
ormountField
calls (not ideal).This should not encourage a pattern of setting initial values (i.e.
useForm({ initialValues })
.Todo
The text was updated successfully, but these errors were encountered: