An open API service indexing awesome lists of open source software.

https://github.com/techwithsam/flutter_form_validation

Flutter Tutorial For Beginners #1 - A simple form validation
https://github.com/techwithsam/flutter_form_validation

Last synced: about 1 year ago
JSON representation

Flutter Tutorial For Beginners #1 - A simple form validation

Awesome Lists containing this project

README

          

- [https://www.youtube.com/watch?v=bQ0qXhUwgfQ&t=43s]

![alt text](https://github.com/acctgen1/flutter_form_validation/blob/master/assets/Flutter%20Tutorial%20For%20Beginners%20%231%20%E2%80%94%20Form%20Validation%20(2).png)

![alt text](https://github.com/acctgen1/flutter_form_validation/blob/master/assets/screenshot-1596906783666.jpg)

# flutter_tutorial

A new Flutter project.

## Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)

For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
"# flutter_form_validation"

Row(
mainAxisAlignment: MainAxisAlignment.spaceAround,
children: [
MaterialButton(
onPressed: () {
saveScreen();
},
child: Text('The fullscreen shot'),
color: Colors.blue,
),
MaterialButton(
onPressed: () {
saveScreen1();
},
child: Text('Only flutter logo shot'),
color: Colors.red),
],
),