mirror of
https://github.com/flutter/samples.git
synced 2025-11-10 14:58:34 +00:00
Bumps [build_runner](https://github.com/dart-lang/build) from 2.1.8 to 2.1.10. - [Release notes](https://github.com/dart-lang/build/releases) - [Commits](https://github.com/dart-lang/build/compare/build_daemon-v2.1.8...build_runner-v2.1.10) --- updated-dependencies: - dependency-name: build_runner dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
form_app
A sample demonstrating different types of forms and best practices.
Sign In with HTTP
A sign in form using package:http to send a request.
Form widgets
A stylized form that uses widgets like TextField, DatePicker, Slider, Checkbox, and Switch.
Autofill
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)
Validation
A form that alerts the user if the data entered is invalid.