resfandiari / flutter_side_menu

Flutter's full customizable side menu has been used as a directory for Related Pages, Navigation Items, and more.
https://pub.dev/packages/flutter_side_menu
BSD 3-Clause "New" or "Revised" License
43 stars 22 forks source link

"titleStyle" cant change text color #8

Closed NeonX closed 1 year ago

NeonX commented 1 year ago

I try to change text color to Colors.amber but it's still black.

SideMenuItemDataTile( isSelected: _currentIndex == 3, onTap: () => setState(() => _currentIndex = 3), title: 'Demo', icon: const Icon(Icons.car_crash), titleStyle: GoogleFonts.notoSansThai( textStyle: const TextStyle( fontSize: 14, color: Colors.amber, ), ), ),

resfandiari commented 1 year ago

Have you tried "selectedTitleStyle"?

NeonX commented 1 year ago

Have you tried "selectedTitleStyle"?

Yes, I've tried both "titleStyle" and "selectedTitleStyle". text color dont change but font size do.

angela-boyadjian commented 1 year ago

I have the same problem ! It seems to only be the color, if I add a text decoration such as an underline it works fine but the color doesn't change.