monthLabelTextStyle static method

TextStyle monthLabelTextStyle({
  1. required bool expanded,
})

Implementation

static TextStyle monthLabelTextStyle({required bool expanded}) {
  return TextStyle(
    color: expanded ? accentColor : labelColor,
    fontWeight: expanded ? FontWeight.w700 : FontWeight.w400,
  );
}