add favorite country options

This commit is contained in:
Salvatore Giordano
2018-04-01 11:05:15 +02:00
parent 3ba8c12a19
commit 1394a9ceaf
6 changed files with 54 additions and 21 deletions

View File

@@ -11,18 +11,18 @@ A flutter package for showing a country code selector.
Just put the component in your application setting the onChanged callback.
```dart
......
@override
Widget build(BuildContext context) => new Scaffold(
body: new Center(
child: new CountryCodePicker(
onChanged: print,
initialSelection: 'IT',
favorites: ['IT','FR'],
),
));
.....
```
It's also possible to select the initial selection using the country code.
```
## Known issues