flutter_validx 0.0.6
flutter_validx: ^0.0.6 copied to clipboard
A beginner-friendly Flutter package that makes form validation clean and easy with prebuilt validators and ready-to-use input widgets.
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add flutter_validxThis will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get):
dependencies:
flutter_validx: ^0.0.6Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:flutter_validx/easy_form_validator.dart';
import 'package:flutter_validx/example/example.dart';
import 'package:flutter_validx/validators/validator.dart';
import 'package:flutter_validx/widgets/easy_email_field.dart';
import 'package:flutter_validx/widgets/easy_password_field.dart';