Closed Besufikad17 closed 1 year ago
Hey @Besufikad17
You can use listItemBuilder
property and take full control of items customisation.
Thanks for responding @AbdullahChauhan Can u provide some examples?
Widget defaultListItemBuilder(BuildContext context, T result) { return Text( result.toString(), maxLines: widget.maxlines, overflow: TextOverflow.ellipsis, style: const TextStyle(fontSize: 16), ); }
Thanks a lot
Hey there, I have used
CustomDropdown
widget withoutclosedFillColor
andexpandedFillColor
parameters but the color of the test inside the menu is white. Is there a way to change it?