'flutter display form errors on the bottom of page
I'am working on a flutter application where the user clicks on register button and if input has errors i don't wanna show the errors below the TextFormField, i've managed to create a form with a GlobalKey and added validator and it's working fine but i'm looking to show errors at the end of page not under TextFormField, any ideas how to do that ?
Thanks in advance
Solution 1:[1]
you can use visible widget to show your error text on error with a bool val to
validate your textfields.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | appdev |
