https://github.com/sloweyyy/form_app
https://github.com/sloweyyy/form_app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloweyyy/form_app
- Owner: sloweyyy
- Created: 2025-02-27T10:49:45.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-27T10:49:48.000Z (3 months ago)
- Last Synced: 2025-03-11T06:02:06.835Z (3 months ago)
- Language: CMake
- Size: 319 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# form_app
A sample demonstrating different types of forms and best practices.
## Sign In with HTTP
[*lib/src/sign_in_http.dart*](lib/src/sign_in_http.dart)A sign in form using `package:http` to send a request.
## Form widgets
[*lib/src/form_widgets.dart*](lib/src/form_widgets.dart)A stylized form that uses widgets like TextField, DatePicker, Slider, Checkbox,
and Switch.## Autofill
[*lib/src/autofill.dart*](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](https://tunnelmole.com/docs), an open source tunneling
tool or [ngrok](https://ngrok.com/), 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*](lib/src/validation.dart)A form that alerts the user if the data entered is invalid.