Transform.scale(
scale: 0.91,
child: DropdownSearch(
validator: (v) => v == null ? "required field" : null,
hint: "Select a country",
dropdownSearchDecoration: InputDecoration(
//filled: true,
//fillColor: Theme.of(context).inputDecorationTheme.fillColor,
),
mode: Mode.MENU,
showSelectedItem: false,
items: [
"India",
"Maldeep",
"Austria",
"Phillipins",
"Itly",
],
label: "No of Auto Print",
showClearButton: false,
//onChanged: print,
//popupItemDisabled: (String s) => s.startsWith('I'),
selectedItem: "India",
),
),
Here I want to change the font family of the items in the dropdown ..also of selectedItem..please assist..also how to change the arrow icon that comes in the dropdown..the process is not available as components..
question from:
https://stackoverflow.com/questions/65951144/i-want-to-change-the-textstyle-of-the-items-appear-in-dropdownsearch-which-comes 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…