Skip to content

Commit 79ca309

Browse files
committed
add new link in featured sectiong
1 parent 082405b commit 79ca309

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,22 @@
1-
# Email validator [![Build status](https://ci.appveyor.com/api/projects/status/fb7ssu5fg8k334vi?svg=true)](https://ci.appveyor.com/project/fredeil/email-validator-dart) [![pub package](https://img.shields.io/pub/v/email_validator.svg)](https://pub.dev/packages/email_validator) [![likes](https://badges.bar/email_validator/likes)](https://pub.dev/packages/email_validator)
1+
# **Email validator** [![Build status](https://ci.appveyor.com/api/projects/status/fb7ssu5fg8k334vi?svg=true)](https://ci.appveyor.com/project/fredeil/email-validator-dart) [![pub package](https://img.shields.io/pub/v/email_validator.svg)](https://pub.dev/packages/email_validator) [![likes](https://badges.bar/email_validator/likes)](https://pub.dev/packages/email_validator)
22

33
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)).
44

55
**Featured in:**
66
1. [How To Validate Emails in Flutter](https://betterprogramming.pub/how-to-validate-emails-in-flutter-957ae75926c9) by https://github.com/lucianojung
77
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
89

910

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**
1312

1413
### 1. Depend on it
1514

1615
Add this to your package's `pubspec.yaml` file:
1716

1817
```yaml
1918
dependencies:
20-
email_validator: '^2.0.1'
19+
email_validator: '^2.1.16'
2120
```
2221
2322
@@ -40,7 +39,7 @@ Now in your Dart code, you can use:
4039
import 'package:email_validator/email_validator.dart';
4140
```
4241

43-
## Usage
42+
## **Usage**
4443

4544
Read the unit tests under `test`, or see code example below:
4645

@@ -56,3 +55,4 @@ void main() {
5655
## Tips
5756

5857
You can also use this repo as a template for creating Dart packages, just clone the repo and start hacking :)
58+

0 commit comments

Comments
 (0)