ez_validator 0.3.3 ez_validator: ^0.3.3 copied to clipboard
Dead simple field/object schema validation for flutter,EzValidator api is inspired by Yup
// ignore_for_file: avoid_print
import 'dart:io';
import 'package:ez_validator/ez_validator.dart';
import 'package:ez_validator_example/error_widget.dart';
import 'package:ez_validator_example/fr.dart';
// import 'package:ez_validator_example/french_locale.dart';
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
void main() {
/// set this in the main to set your custom locale
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'exemple',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'EzValidator Exemple'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, this.title}) : super(key: key);
final String? title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Map<String, dynamic> form = {"number": '5', "pos": '-5', 'file': File('')};
Map<dynamic, dynamic> errors = {};
EzSchema formSchema = EzSchema.shape(
{
"email": EzValidator<String>(label: "l'email").required().email(),
"password":
EzValidator<String>(label: 'le mot de passe').required().minLength(8),
"age": EzValidator<num>(label: 'l\'age').required().number().max(18),
"birth_year": EzValidator<int>().required().number().min(2017),
"file": EzValidator<File>().required().addMethod((file) =>
file != null &&
file
.lastAccessedSync()
.isAfter(DateTime.now().subtract(const Duration(days: 1)))),
"date":
EzValidator<DateTime>(defaultValue: DateTime(2018)).required().date(),
},
);
void validate() {
/// wrap your validation method with try..catch when you add the
/// identicalKeys clause to your schema
try {
final res = formSchema.validateSync(form);
setState(() {
errors = res.$2;
});
print(res.$1);
errors.forEach((key, value) {
print('$key ===> $value');
});
} catch (e) {
print(e);
Fluttertoast.showToast(
msg: "Missing fields input",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.BOTTOM,
timeInSecForIosWeb: 1,
backgroundColor: Colors.red,
textColor: Colors.white,
fontSize: 16.0,
);
}
}
InputDecoration _getInputDecoration(IconData icon, String label) {
return InputDecoration(
prefixIcon: Icon(icon),
border: InputBorder.none,
fillColor: const Color(0xfff3f3f4),
filled: true,
hintText: label,
);
}
_onChange(String name, dynamic value) {
form[name] = value;
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title as String),
),
body: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expanded(
child: Container(
color: Colors.black12,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 25.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextField(
onChanged: (value) => _onChange('email', value),
decoration: _getInputDecoration(Icons.email, "Email"),
),
ErrorWIdget(name: errors['email']),
const SizedBox(height: 10.0),
TextField(
onChanged: (value) => _onChange('password', value),
decoration:
_getInputDecoration(Icons.password, "Password"),
),
ErrorWIdget(name: errors['password']),
const SizedBox(height: 10.0),
TextField(
keyboardType: TextInputType.number,
onChanged: (value) => _onChange('age', value),
decoration: _getInputDecoration(
Icons.supervised_user_circle_outlined, "Age"),
),
ErrorWIdget(name: errors['age']),
const SizedBox(height: 10.0),
TextField(
keyboardType: TextInputType.number,
onChanged: (value) =>
_onChange('birth_year', int.tryParse(value)),
decoration: _getInputDecoration(
Icons.date_range_outlined, "Birth Year"),
),
ErrorWIdget(name: errors['birth_year']),
const SizedBox(height: 10.0),
MaterialButton(
onPressed: validate,
color: Colors.white,
highlightColor: Colors.red,
child: const Text("Submit"),
),
MaterialButton(
onPressed: () {
EzValidator.setLocale(const FrLocale());
},
color: Colors.white,
highlightColor: Colors.red,
child: const Text("Fr Locale"),
)
],
),
),
),
),
],
),
),
);
}
}