iamvivekkaushik/DatePickerTimelineFlutter

Text color not changing on dark mode

Closed this issue · 1 comments

Describe the bug
Dark mode do not change the black text color of dates. Also there is no option to change color of dates which are not selected.

Hi @nidhinmahesh, This currently does not support the dark mode. However, you can override the text color for both selected or non selected items. Check the constructor and pass these parameters values

DatePicker(
    this.startDate,
    this.monthTextStyle = TextStyle(),
    this.dayTextStyle = TextStyle(),
    this.dateTextStyle = TextStyle()
}