Skip to content

Releases: Daniel-Ioannou/flutter_country_picker

v2.0.26

12 May 14:02
c735d27
Compare
Choose a tag to compare

In this version:

  • Fix Turkish localization
  • Add moveAlongWithKeyboard: An optionalargument can be used to move bottomSheet along with keyboard when textfield is focused. It could be useful when bottomSheet height is smaller than half of the screen. Otherwise it shouldn't be set. It has a default value of false.
    showCountryPicker(
      context: context,
      moveAlongWithKeyboard: true,
      countryListTheme: CountryListThemeData(
       bottomSheetHeight: 500,
      ),
      onSelect: (Country country) => print('Select country: ${country.displayName}'),
    );

v2.0.25

27 Feb 21:24
6481aec
Compare
Choose a tag to compare

In this version:

  • Add support for Haitian Creole (HT) localization
  • Add support for Slovak (SK) localization
  • Add support for Bulgarian (BG) localization
  • Add support for Romanian (RO) localization
  • Add support for Catala (CA) localization
  • Add support for Hebrew (HE) localization

v2.0.24

29 Jan 19:51
f2891e0
Compare
Choose a tag to compare

In this version:

  • Add option for bottom sheet Width.
    showCountryPicker(
      context: context,
      countryListTheme: CountryListThemeData(
       bottomSheetWidth: 500, // Optional. Country list modal Width
      ),
      onSelect: (Country country) => print('Select country: ${country.displayName}'),
    );
    • Add emojiFontFamilyFallback

V2.0.23

02 Dec 17:53
7a955fb
Compare
Choose a tag to compare

In this version:

  • Export CustomFlagBuilder
  • Add parameter useRootNavigator

V2.0.22

30 Oct 20:05
aa8fad0
Compare
Choose a tag to compare

In this version:

  • Add support for Czech localization
  • Fix typos Korean

v2.0.21

03 Sep 15:22
82dfe99
Compare
Choose a tag to compare

In this version:

  • Add support for Korean localization
  • Add support for Japanese localization
  • Add support for Indonesian localization
  • Fix Windows and web flag

V2.0.20

04 Mar 14:07
917142b
Compare
Choose a tag to compare

In this version:

  • Add support for Italian localization
  • Fix French Translations
  • UI filling fix

V2.0.19

17 Dec 15:43
Compare
Choose a tag to compare

In this version:

  • Add support for Dutch localization
  • Add parsePhoneCode and tryParsePhoneCode

V2.0.18

02 Dec 19:35
Compare
Choose a tag to compare

In this version:

  • Fix Hindi Translations
  • Removed old country codes for Kosovo (+381 & +386)

V2.0.17

08 Nov 20:49
20f5c00
Compare
Choose a tag to compare

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