September 2019
Beginner
512 pages
12h 52m
English
The FormField widget works as a base class to create our own form field, used to integrate the Form widget. Its functions are as follows:
FormField can live without Form widgets, but this isn't typical – only when we have, let's say, a single FormField onscreen.
Many built-in input widgets from Flutter come with a corresponding FormField widget implementation. For example, TextField widget has the TextFormField. The TextFormField widget helps with access to the TextField value and also adds Form related behaviors to it (such as, validation).
A TextField widget lets the user ...
Read now
Unlock full access