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.
Eric Windmill d66d8c49b5
Remove code_sharing and place_tracker, cleanup repo (#2831)
3 weeks ago
..
android Update Samples for 3.16 (#2085) 3 years ago
ios Update Samples for 3.16 (#2085) 3 years ago
lib Remove code_sharing and place_tracker, cleanup repo (#2831) 3 weeks ago
linux Remove code_sharing and place_tracker, cleanup repo (#2831) 3 weeks ago
macos Remove code_sharing and place_tracker, cleanup repo (#2831) 3 weeks ago
test Dart 3.9 / Flutter 3.35 [first LLM release] (#2714) 9 months ago
web Bump deps and min SDKs, move web apps to new bootstrapping logic (#2292) 2 years ago
windows Remove code_sharing and place_tracker, cleanup repo (#2831) 3 weeks ago
.gitignore Clean up dependencies across packages (#2585) 1 year ago
.metadata Fixup for failing Beta CI (#2092) 3 years ago
README.md Add Tunnelmole as a FOSS tunneling tool for the form_app sample (#2199) 2 years ago
analysis_options.yaml Create `analysis_defaults` package (#1654) 3 years ago
codelab_rebuild.yaml Update for 3.13 stable (#1992) 3 years ago
pubspec.yaml Remove code_sharing and place_tracker, cleanup repo (#2831) 3 weeks 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).

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.