flutter_country_picker 0.1.4 copy "flutter_country_picker: ^0.1.4" to clipboard
flutter_country_picker: ^0.1.4 copied to clipboard

outdated

A new flutter plugin project.

Pub

flutter_country_picker #

A Flutter Country Picker Widget with support to country dialing codes

Usage #

Add the CountryPicker widget in your layout and use the onChanged callback.
Full example


// Option to show what to display of the selected country when 'dense' is false,
// Only displays country's flag when dense is true.


 @override
 Widget build(BuildContext context) {
   return new Scaffold(
     appBar: new AppBar(
       title: Text('Flutter Country Picker Demo'),
     ),
     body: new Center(
       child: CountryPicker(
         dense: false,
         showFlag: true,  //displays flag, true by default
         showDialingCode: false, //displays dialing code, false by default
         showName: true, //displays country name, true by default
         onChanged: (Country country) {
           setState(() {
             _selected = country;
           });
         },
         selectedCountry: _selected,
       ),
     ),
   );
 }

24
likes
0
pub points
87%
popularity

Publisher

unverified uploader

A new flutter plugin project.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

diacritic, flutter

More

Packages that depend on flutter_country_picker