Skip to content

Instantly share code, notes, and snippets.

@valterh4ck3r
Created June 27, 2022 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valterh4ck3r/41f7e85754a4b371567f18f87a6d67de to your computer and use it in GitHub Desktop.
Save valterh4ck3r/41f7e85754a4b371567f18f87a6d67de to your computer and use it in GitHub Desktop.
Validate Email Flutter Dart
class Util {
static bool isEmail(String email){
return RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+").hasMatch(email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment