Skip to content

Releases: Daniel-Ioannou/flutter_currency_picker

v2.0.11

12 May 20:18
861a476
Compare
Choose a tag to compare

In this version:

  • Add more currencies:
    • Rwandan franc
    • Haitian gourde
  • Add showSearchField: Option to show/hide the search TextField.
  • Add option for bottom sheet height.
       showCurrencyPicker(
         context: context,
         theme: CurrencyPickerThemeData(
           bottomSheetHeight: MediaQuery.of(context).size.height / 2,
         ),
         onSelect: (Currency currency) => print('Select currency: ${currency.name}'),
       );

v2.0.10

30 Apr 12:55
e699d98
Compare
Choose a tag to compare

In this version:

  • Add more currencies:
    • Cambodian riel
    • Central African CFA franc
  • Remove duplicated currency BYN

v2.0.9

06 Apr 20:12
Compare
Choose a tag to compare

In this version:

  • Add more currencies:
    • Seychellois rupee
    • Bosnia and Herzegovina convertible mark
  • Update lint rules

v2.0.8

24 Feb 17:34
8374bfe
Compare
Choose a tag to compare

In this version:

  • Fix code for Burundian Franc
  • Fix name and name_pluralfor Brazilian Real

v2.0.7

16 Jan 14:35
Compare
Choose a tag to compare

In this version:

  • Fix code for Burundian Franc
  • Fix name and name_pluralfor Brazilian Real

v2.0.6

16 Jan 14:34
Compare
Choose a tag to compare

In this version:

  • Fix name_plural for Suriname Dollar

v2.0.5

23 Aug 10:15
48d1550
Compare
Choose a tag to compare

In this version:

  • Fix name_plural of the Euros

v2.0.4

05 May 18:46
2ce72b6
Compare
Choose a tag to compare

In this version:

  • Implemented currency picker theme
     showCurrencyPicker(
        context: context,
        theme: CurrencyPickerThemeData(
           flagSize: 25,
           titleTextStyle: TextStyle(fontSize: 17),
           subtitleTextStyle: TextStyle(fontSize: 15, color: Theme.of(context).hintColor),
        ),
        onSelect: (Currency currency) {
           print('Select currency: ${currency.name}');
        },
     );
  • Add ScrollPhysics parameter

v2.0.3

20 Mar 20:45
Compare
Choose a tag to compare

In this version:

  • Add toJson in currency model
  • Fix incorrect currency symbols

v2.0.2

18 Mar 19:44
fb09505
Compare
Choose a tag to compare

In this version:

  • Add more currency info:
    • Decimal digits
    • Plural name
    • Symbol on left,
    • Decimal separator
    • Thousands separator
  • Add more currencies:
    • Albanian Lek
    • Armenian Dram
    • Azerbaijani Manat
    • Burundian Franc
    • Botswanan Pula
    • Belarussian Ruble
  • Remove Lithuanian Litas currency (was replaced by the Euro).