samples/form_app
dependabot[bot] 46d207587c
Bump go_router from 8.2.0 to 9.0.0 in /form_app ()
2 years ago
..
android Update samples for Dart 3.0.0 () 2 years ago
ios Update samples for Dart 3.0.0 () 2 years ago
lib Explicit import for Platform and kIsWeb () 2 years ago
linux Update `sdk` constraint range and update runners () 2 years ago
macos Update samples for Dart 3.0.0 () 2 years ago
test Migrate form_app to null safety () 3 years ago
web Flutter 3.7.0 () 2 years ago
windows Update `sdk` constraint range and update runners () 2 years ago
.gitignore move experimental/form_app to root of project () 4 years ago
.metadata Update samples for Dart 3.0.0 () 2 years ago
README.md Update README.md () 4 years ago
analysis_options.yaml Create `analysis_defaults` package () 2 years ago
codelab_rebuild.yaml Flutter 3.7.0 () 2 years ago
pubspec.yaml Bump go_router from 8.2.0 to 9.0.0 in /form_app () 2 years 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.