Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Ioannou authored Aug 18, 2020
1 parent 20a74a0 commit 2195c5a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@

## [1.0.2] - 18 Aug 2020

* Add exclude countries option.
* Add exclude countries option.
Can be used to exclude(remove) one ore more country from the countries list
```Dart
showCountryPicker(
context: context,
exclude: <String>['KN', 'MF'], //It takes a list of country code(iso2).
onSelect: (Country country) => print('Select country: ${country.displayName}'),
);
```

## [1.0.1] - 12 Aug 2020

Expand Down

0 comments on commit 2195c5a

Please sign in to comment.