We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
eafb498
showCurrencyPicker( context: context, theme: CurrencyPickerThemeData( // Optional. Styles the search field. inputDecoration: InputDecoration( labelText: 'Search', hintText: 'Start typing to search', prefixIcon: const Icon(Icons.search), border: OutlineInputBorder( borderSide: BorderSide( color: const Color(0xFF8C98A8).withOpacity(0.2), ), ), ), ), onSelect: (Currency currency) { print('Select currency: ${currency.name}'); }, );