We’ve looked at the TextFormField in Flutter, almost exclusively at this point. However there are other form fields.
These are often styled to work appropriately on a mobile device, so while they might seem like a web form field, it may look different.
Toggle Buttons – Collections of buttons which can be toggled either to be selected or not. Similar to a checkbox in a form field in HTML, however it is more visual with icons being used. You can also code it so only one item in the group can be selected, similar to a set of radio buttons.
Checkbox – Of course there is an actual checkbox you can use as well.
DropDown List – Click on the item, and a list appears for you to choose from. Similar to the select tag in HTML.
Of course there are others you can find, such as color and date pickers and more, but these are some of the most common you’ll run into.
Other Form Fields in Flutter was originally found on Access 2 Learn