1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/form_app
Kevin Moore 9fef1332f3 Clean up dependencies across packages (#2585)
Drop dep on pkg:collection, use new bits in Dart 3.0
Fixed very old dep in navigation_and_routing – bug was fixed long ago
2025-02-13 03:14:20 +00:00
..
2023-11-16 08:55:44 +10:00
2023-11-16 08:55:44 +10:00
2025-02-12 18:08:01 -05:00
2023-11-16 08:55:44 +10:00
2023-11-16 08:55:44 +10:00
2025-02-12 18:08:01 -05:00
2023-11-16 08:55:44 +10:00
2023-11-16 14:48:50 +10:00
2025-02-12 18:08:01 -05:00

form_app

A sample demonstrating different types of forms and best practices.

Sign In with HTTP

lib/src/sign_in_http.dart

A sign in form using package:http to send a request.

Form widgets

lib/src/form_widgets.dart

A stylized form that uses widgets like TextField, DatePicker, Slider, Checkbox, and Switch.

Autofill

lib/src/autofill.dart

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).

Then use tunnelmole, an open source tunneling tool or ngrok, a popular closed source tunneling tool to create an HTTPS url for your local app (tmole 5000 or ngrok http 5000).

Validation

lib/src/validation.dart

A form that alerts the user if the data entered is invalid.