mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
Following the ideas in flutter/website#7798 I have changed the imports needed for Platform and kIsWeb to be explicitly named. ## Pre-launch Checklist - [ ] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [ ] I signed the [CLA]. - [ ] I read the [Contributors Guide]. - [ ] I updated/added relevant documentation (doc comments with `///`). - [ ] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/wiki/Chat [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
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.