TWCalendarMonthViewConfig constructor

TWCalendarMonthViewConfig({
  1. double? padding,
  2. double? monthBodyHeight,
  3. bool? canSelectedToday,
  4. List<String>? monthNames,
  5. String? yearTitle,
  6. double? titleFontSize,
  7. int? sortOffset,
  8. String titleHandler(
    1. int year,
    2. int month
    )?,
})

月份配置对象

Implementation

TWCalendarMonthViewConfig({
  this.padding,
  this.monthBodyHeight,
  this.canSelectedToday,
  this.monthNames,
  this.yearTitle,
  this.titleFontSize,
  this.sortOffset,
  this.titleHandler,
});