Releases: Daniel-Ioannou/flutter_country_picker
Releases · Daniel-Ioannou/flutter_country_picker
v2.0.7
In this version:
- Add support for Turkish localization
v2.0.6
In this version:
- Add support for Nepali and Hindi localization
v2.0.5
In this version:
- Add styling options for the border-radius and the search field.
showCountryPicker( context: context, countryListTheme: CountryListThemeData( // Optional. Sets the border radius for the bottomsheet. borderRadius: BorderRadius.only( topLeft: Radius.circular(40.0), topRight: Radius.circular(40.0), ), // Optional. Styles the search field. inputDecoration: InputDecoration( labelText: 'Search', hintText: 'Start typing to search', prefixIcon: const Icon(Icons.search), border: OutlineInputBorder( borderSide: BorderSide( color: const Color(0xFF8C98A8).withOpacity(0.2), ), ), ), ), onSelect: (Country country) => print('Select country: ${country.displayName}'), );
v2.0.4
In this version:
- Add
CountryParser
v2.0.3
In this version:
- Add Ukrainian, Russian, and Polish translations
- Add
onClosed
callback
v2.0.2
In this version:
- Add support for Norwegian localization
v2.0.1
In this version:
- Implemented country list theme
showCountryPicker( context: context, countryListTheme: CountryListThemeData( flagSize: 25, backgroundColor: Colors.white, textStyle: TextStyle(fontSize: 16, color: Colors.blueGrey), ), onSelect: (Country country) { print('Select country: ${country.displayName}'); }, );
v2.0.0
In this version:
- Migrated to null safety
v1.1.4
In this version:
- Add support for Spanish and Portuguese localization.
- If
showPhoneCode
is false remove duplicates country
v1.1.3
In this version:
- Localize label and hint of search text field