text_field_validator 0.0.3
text_field_validator: ^0.0.3 copied to clipboard
A flutter package for both Android and iOS which provides the validation functionalities for the input fields.
A flutter package for both Android and iOS which provides the validation functionalities for the input fields.
Features #
Provides validation for the input types 1. text 2. password
Getting started #
Add the text_field_validator package into pubspec.yaml file start working.
Usage #
import 'package:flutter/material.dart'; import 'package:text_field_validator/text_field_validator.dart';
class ValidatorTest extends StatefulWidget { const ValidatorTest({Key? key}) : super(key: key);
@override
State<ValidatorTest> createState() => _ValidatorTestState();
}
class _ValidatorTestState extends State