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/experimental/form_app
Brett Morgan d88f131982
flutter pub upgrade (#524)
4 years ago
..
android add form_app (#463) 4 years ago
ios add form_app (#463) 4 years ago
lib add form_app (#463) 4 years ago
web add form_app (#463) 4 years ago
.gitignore add form_app (#463) 4 years ago
.metadata add form_app (#463) 4 years ago
README.md add form_app (#463) 4 years ago
pubspec.lock flutter pub upgrade (#524) 4 years ago
pubspec.yaml add form_app (#463) 4 years ago

README.md

form_app

A sample demonstrating different types of forms and best practices.

Sign In w/ 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.