Skip to content

v2.0.26

Latest
Compare
Choose a tag to compare
@Daniel-Ioannou Daniel-Ioannou released this 12 May 14:02
c735d27

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