Flutter prevent double submission of forms

Viewed 22

There is some way to prevent double submission of forms in flutter? I've had problems with it and I don't know what to do about it.

1 Answers

you can do either one of these:

  1. disable the submit button
  2. replace the button with the loader
  3. show a modal loader
Related