codegrue / card_settings

A flutter package for building card based forms.
https://pub.dartlang.org/packages/card_settings
MIT License
555 stars 103 forks source link

Feature request: CardSettingsListPicker - selected item text color #172

Closed adambrodin closed 3 years ago

adambrodin commented 3 years ago

Hello there!

Would it be possible to be able to change the color of the preview/currently selected list item from a list picker? As of right now the only color available seems to be black.

image

codegrue commented 3 years ago

All the colors are controlled by themes. See the example and readme for how to do this.

adambrodin commented 3 years ago

All the colors are controlled by themes. See the example and readme for how to do this.

My fault, I've tried to change various colors on the theme before but I must have missed it. Solved it now. For anyone with the same issue, here's the specific theming settings that changes it:

textTheme: TextTheme( subtitle1: TextStyle(color: Colors.red[800]))