currency_picker 2.0.0
currency_picker: ^2.0.0 copied to clipboard
A flutter package to select a currency from a list of currencies.
2.0.0 05 Mar 2021 #
- Migrated to null safety
1.0.6 28 Jan 2021 #
- Updating documentation
1.0.5 22 Jan 2021 #
- Sort currencies list according to most traded currencies
1.0.4 22 Dec 2020 #
searchHint: Option to customize hint of the search TextFieldshowCurrencyName: Option to show/hide the currency nameshowCurrencyCode: Option to show/hide the currency code
showCurrencyPicker(
context: context,
showFlag: true,
searchHint: 'Search here',
showCurrencyName: true,
showCurrencyCode: true,
onSelect: (Currency currency) {
print('Select currency: ${currency.name}');
},
);
Note: showCurrencyCode and showCurrencyName cannot be both false
1.0.3 09 Dec 2020 #
- Add option to show flag for each currency.
showCurrencyPicker( context: context, showFlag: true, onSelect: (Currency currency) { print('Select currency: ${currency.name}'); }, );
1.0.2 25 Nov 2020 #
- Deprecated showCurrencyListBottomSheet. Use
showCurrencyPickerinstead. - Add currency filter option.
- Can be used to uses filter the currencies list.
- It takes a list of currency code.
showCurrencyPicker( context: context, onSelect: (Currency currency) { print('Select currency: ${currency.name}'); }, currencyFilter: <String> ['EUR', 'GBP', 'USD', 'AUD', 'CAD', 'JPY', 'HKD', 'CHF', 'SEK', 'ILS'], );
1.0.1 15 Nov 2020 #
- Implement search.
- Implement CurrencyService
1.0.0 31 Oct 2020 #
- Initial developers preview release.