A sample demonstrating different types of forms and best practices.
A sign in form using package:http
to send a request.
A stylized form that uses widgets like TextField, DatePicker, Slider, Checkbox, and Switch.
A form that uses AutofillGroup to auto-fill the users name, email, and address.
In order to use Autofill in a browser, your app needs to be hosted with HTTPS.
If you would like to test locally, you can build the app in release mode
(flutter run -d chrome --release --web-port=5000
) and use
ngrok to create an HTTPS url for your local app (ngrok http 5000
)
A form that alerts the user if the data entered is invalid.