There was an error while loading. Please reload this page.
f4a2cf6
getFromPhoneCode
header
showCountryPicker( context: context, header: Padding( padding: const EdgeInsets.only(top: 10.0, bottom: 10.0, left: 20.0, right: 20.0), child: const Text( 'Select your country', style: TextStyle( fontSize: 22, fontWeight: FontWeight.bold, ), ), ), onSelect: (Country country) { print('Select country: ${country.displayName}'); }, );
showCountryPicker( context: context, showDragHandle: true, onSelect: (Country country) { print('Select country: ${country.displayName}'); }, );