You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple (but correct) Dart class for validating email addresses without using RegEx. Can also be used to validate emails within Flutter apps (see [Flutter email validation](https://github.com/fredeil/flutter-email-validator)).
4
4
5
5
**Featured in:**
6
6
1.[How To Validate Emails in Flutter](https://betterprogramming.pub/how-to-validate-emails-in-flutter-957ae75926c9) by https://github.com/lucianojung
7
7
2.[Flutter Tutorial - Email Validation In 7 Minutes](https://www.youtube.com/watch?v=mXyifVJ-NFc) by https://github.com/JohannesMilke
8
+
3.[Flutter Tutorial - Email Validation | Package of the week](https://www.youtube.com/watch?v=ZN_7Pur5h8Q&t=31s) by https://github.com/Dhanraj-FlutterDev
8
9
9
10
10
-
## Installation
11
-
12
-
This package requires the latest version of [Dart](https://www.dartlang.org/). You can download the latest and greatest [here](https://www.dartlang.org/tools/sdk#install).
11
+
## **Installation**
13
12
14
13
### 1. Depend on it
15
14
16
15
Add this to your package's `pubspec.yaml` file:
17
16
18
17
```yaml
19
18
dependencies:
20
-
email_validator: '^2.0.1'
19
+
email_validator: '^2.1.16'
21
20
```
22
21
23
22
@@ -40,7 +39,7 @@ Now in your Dart code, you can use:
0 commit comments