dowTextFormatter property

TextFormatter? dowTextFormatter
final

Use to customize days of week panel text (e.g. with different DateFormat). You can use String transformations to further customize the text. Defaults to simple 'E' format (i.e. Mon, Tue, Wed, etc.).

Example usage:

dowTextFormatter: (date, locale) => DateFormat.E(locale).format(date)[0],

Implementation

final TextFormatter? dowTextFormatter;