I have the validators for a couple of TextFormFields, but is i write the validators in the same class I can retreive it but if the write in a seperate class I just cannot initialize it as its not showing it.
Thing I have done for now :
class _RegistrationPageState extends State<RegistrationPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: LightColors.kAqua,
body: SingleChildScrollView(
child: Padding(
padding: const EdgeInsets.only(top: 32.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
TextFormField(
validator: validateEmail,
controller: emailController,
onChanged: (val){
setState(() => email = val);
},
decoration: InputDecoration(
prefixIcon: Icon(Icons.email),
hintText: "Email",
hintStyle: TextStyle(color: Colors.grey),
border: InputBorder.none),
),
]
)
)
)
);
}
String validateEmail(String value){
String pattern = r'(^[a-z,A-Z ]*$)';
RegExp regExp = new RegExp(pattern);
if (!regExp.hasMatch(value)) {
return "Name must be a-z and A-Z";
}
return null;
}
}
By using this I can get the validateEmail in the validator field but if i just write the same validateEmail in a seperate class I'm unable to fetch it.
class Validators {
String validateEmail(String value){
String pattern = r'(^[a-z,A-Z ]*$)';
RegExp regExp = new RegExp(pattern);
if (!regExp.hasMatch(value)) {
return "Name must be a-z and A-Z";
}
return null;
}
}
If you want to use your validator function all over the project. Just paste it outside the class and use it any where Or you can also create new file and paste the function there and use them on other file On this approach don't forget to import the file. (use ctrl + . on the function name to import the file, compiler automatically find the file and import it)
These type of function called Top-level Function.
or If you want to use these function inside a class. then first create an Instance and call the function.