mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Brett Morgan
0ccc283a4e
|
12 months ago | |
---|---|---|
.. | ||
android | 12 months ago | |
ios | 12 months ago | |
lib | 1 year ago | |
linux | 12 months ago | |
macos | 12 months ago | |
test | 3 years ago | |
web | 1 year ago | |
windows | 12 months ago | |
.gitignore | 4 years ago | |
.metadata | 12 months ago | |
README.md | 4 years ago | |
analysis_options.yaml | 2 years ago | |
codelab_rebuild.yaml | 1 year ago | |
pubspec.yaml | 12 months ago |
README.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.