defaultBuildMonthBackground function

Widget defaultBuildMonthBackground(
  1. BuildContext context,
  2. DateMonth month
)

默认构建月视图背景

Implementation

Widget defaultBuildMonthBackground(BuildContext context, DateMonth month) {
  return Text("${month.month}",
      style: TextStyle(fontSize: 200, color: Color(0x0b000000)));
}