Skip to content

Commit

Permalink
add new link in featured sectiong
Browse files Browse the repository at this point in the history
  • Loading branch information
fredeil committed Jul 27, 2022
1 parent 082405b commit 79ca309
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
# 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)
# **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)

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

**Featured in:**
1. [How To Validate Emails in Flutter](https://betterprogramming.pub/how-to-validate-emails-in-flutter-957ae75926c9) by https://github.com/lucianojung
2. [Flutter Tutorial - Email Validation In 7 Minutes](https://www.youtube.com/watch?v=mXyifVJ-NFc) by https://github.com/JohannesMilke
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


## Installation

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).
## **Installation**

### 1. Depend on it

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

```yaml
dependencies:
email_validator: '^2.0.1'
email_validator: '^2.1.16'
```
Expand All @@ -40,7 +39,7 @@ Now in your Dart code, you can use:
import 'package:email_validator/email_validator.dart';
```

## Usage
## **Usage**

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

Expand All @@ -56,3 +55,4 @@ void main() {
## Tips

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

0 comments on commit 79ca309

Please sign in to comment.