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.
samples/form_app
Brett Morgan 0ccc283a4e
Fixup for failing Beta CI (#2092)
8 months ago
..
android Update Samples for 3.16 (#2085) 8 months ago
ios Update Samples for 3.16 (#2085) 8 months ago
lib Explicit import for Platform and kIsWeb (#1898) 1 year ago
linux Update Samples for 3.16 (#2085) 8 months ago
macos Update Samples for 3.16 (#2085) 8 months ago
test Migrate form_app to null safety (#925) 3 years ago
web Flutter beta (#1952) 11 months ago
windows Update Samples for 3.16 (#2085) 8 months ago
.gitignore move experimental/form_app to root of project (#623) 4 years ago
.metadata Fixup for failing Beta CI (#2092) 8 months ago
README.md Update README.md (#638) 4 years ago
analysis_options.yaml Create `analysis_defaults` package (#1654) 1 year ago
codelab_rebuild.yaml Update for 3.13 stable (#1992) 10 months ago
pubspec.yaml Fixup for failing Beta CI (#2092) 8 months ago

README.md

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) and use ngrok to create an HTTPS url for your local app (ngrok http 5000)

Validation

lib/src/validation.dart

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