Skip to content

v2.0.1

Compare
Choose a tag to compare
@Daniel-Ioannou Daniel-Ioannou released this 15 Mar 19:04
· 328 commits to master since this release

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}');
      },
    );