simc / auto_size_text

Flutter widget that automatically resizes text to fit perfectly within its bounds.
https://pub.dev/packages/auto_size_text
MIT License
2.06k stars 240 forks source link

Resizing not working in DropDownMenuItem #69

Closed jabirmayar closed 2 weeks ago

jabirmayar commented 4 years ago

It is not working on DropDownButton Children i.e DropDownmenuItem, I tried wrapping AutoTextsize within a Expanded Widget and Fittedbox but still no use. Example Code: new DropdownMenuItem( child: Expanded(child: new AutoSizeText('Portuguese', style: TextStyle(color: parseColor("#dadce0"),fontSize: 15), minFontSize: 10, maxFontSize: 18, maxLines: 4, overflow: TextOverflow.ellipsis, )), value: 'pt', ),