You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like you to add to the FormMixin a method to calculate if the all fields embedded in the inputs field are pure. A good idea to know if the form is pure is by iterating over the inputs field and checking each one of its status.
bool get isPure => inputs.every((e) => e.isPure);
Thanks for the update to 0.5.0+, it was very important to split the statuses of the form field and the general status of the form submission.
The text was updated successfully, but these errors were encountered:
I would like you to add to the FormMixin a method to calculate if the all fields embedded in the inputs field are pure. A good idea to know if the form is pure is by iterating over the inputs field and checking each one of its status.
bool get isPure => inputs.every((e) => e.isPure);
Thanks for the update to 0.5.0+, it was very important to split the statuses of the form field and the general status of the form submission.
The text was updated successfully, but these errors were encountered: