FLineCalendarStyle constructor

FLineCalendarStyle({
  1. required FWidgetStateMap<BoxDecoration> decoration,
  2. required FWidgetStateMap<Color> todayIndicatorColor,
  3. required FWidgetStateMap<TextStyle> dateTextStyle,
  4. required FWidgetStateMap<TextStyle> weekdayTextStyle,
  5. required FTappableStyle tappableStyle,
  6. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 6.5),
  7. double contentEdgeSpacing = 15.5,
  8. double contentSpacing = 2,
})

Creates a FLineCalendarStyle.

Implementation

FLineCalendarStyle({
  required this.decoration,
  required this.todayIndicatorColor,
  required this.dateTextStyle,
  required this.weekdayTextStyle,
  required this.tappableStyle,
  this.padding = const EdgeInsets.symmetric(horizontal: 6.5),
  this.contentEdgeSpacing = 15.5,
  this.contentSpacing = 2,
});