DateRemindWidgetStyle constructor

const DateRemindWidgetStyle({
  1. Color? eventsBorderColour,
  2. Color? holidayBorderColour,
  3. Radius borderRadius = const Radius.circular(5),
  4. double borderWidth = 3,
  5. Color? backgroundColour,
  6. TextStyle titleStyle = const TextStyle(fontSize: 28, fontWeight: FontWeight.bold),
  7. TextStyle descStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.w300),
  8. TextStyle durationStyle = const TextStyle(fontSize: 18, fontWeight: FontWeight.normal),
})

Create theme data for DateRemindWidget

Implementation

const DateRemindWidgetStyle(
    {this.eventsBorderColour,
    this.holidayBorderColour,
    this.borderRadius = const Radius.circular(5),
    this.borderWidth = 3,
    this.backgroundColour,
    this.titleStyle =
        const TextStyle(fontSize: 28, fontWeight: FontWeight.bold),
    this.descStyle =
        const TextStyle(fontSize: 16, fontWeight: FontWeight.w300),
    this.durationStyle =
        const TextStyle(fontSize: 18, fontWeight: FontWeight.normal)});