validation_textformfield 1.1.3 copy "validation_textformfield: ^1.1.3" to clipboard
validation_textformfield: ^1.1.3 copied to clipboard

outdated

A new Flutter project.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  validation_textformfield: Update version
  1. Import the package and use it in your Flutter App.
import 'package:validation_textformfield/validation_textformfield.dart';
    
Email_Validation_Textfromfiled(

when_text_field_Empty: "Please enter  email",
validator_massage: "Please enter valid email",
decoration: InputDecoration(
focusedBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.black, width: 0.5),
),
enabledBorder: OutlineInputBorder(
borderSide: BorderSide(color: Colors.black, width: 0.5),
),
border: OutlineInputBorder(),
counterText: '',
hintStyle: TextStyle(color: Colors.black, fontSize: 18.0)),

textEditingController: txtEmailCtrl,
);

Image #

Email