A flutter package to select a country from a list of countries.
Add the package to your pubspec.yaml:
country_picker: ^1.0.0
In your dart file, import the library:
import 'package:country_picker/country_picker.dart';
Show country picker using showCountryPicker
:
showCountryPicker(
context: context,
onSelect: (Country country) {
print('Select country: ${country.displayName}');
},
);
onSelect
: Called when a country is select. The country picker passes the new value to the callback (required)Contributions of any kind are more than welcome! Feel free to fork and improve country_code_picker in any way you want, make a pull request, or open an issue.
Author: Daniel-Ioannou
Source Code: https://github.com/Daniel-Ioannou/flutter_country_picker
#flutter #dart #mobile-apps