iamvivekkaushik / DatePickerTimelineFlutter

Flutter Date Picker Library that provides a calendar as a horizontal timeline
Apache License 2.0
282 stars 198 forks source link

SelectedTextColor was responding to user's entry #54

Closed pcostigan closed 2 years ago

pcostigan commented 3 years ago

the bug In the constructor, the parameter 'selectedTextColor' was not responding to the user's entered choice.

Line 72 was: 'this.selectedTextColor = Colors.white,'

Changing line 72 to ' this.selectedTextColor = selectedTextColor ?? Colors.white,' and line 25 to 'final Color? selectedTextColor;' fixed the issue.

Using date_picker_timeline: ^1.2.3