Skip to content

V2.0.17

Compare
Choose a tag to compare
@Daniel-Ioannou Daniel-Ioannou released this 08 Nov 20:49
· 131 commits to master since this release
20f5c00

In this version:

  • Add option to hide search bar
      showCountryPicker(
        context: context,
        showSearch: false,
        onSelect: (Country country) => print('Select country: ${country.displayName}'),
      );
  • Add searchTextStyle
      showCountryPicker(
        context: context,
        countryListTheme: CountryListThemeData(
          searchTextStyle: TextStyle( // Optional. Styles the text in the search field
            color: Colors.blue,
            fontSize: 18,
          ),
        ),
        onSelect: (Country country) => print('Select country: ${country.displayName}'),
      );
  • Removed the need of worldwide.png and changed to '🌍' emoji