PlexWidgetCard constructor

const PlexWidgetCard({
  1. Key? key,
  2. String? eyebrow,
  3. String? title,
  4. String? subtitle,
  5. Widget? actions,
  6. VoidCallback? onMenu,
  7. Widget? footer,
  8. PlexWidgetCardTone tone = PlexWidgetCardTone.standard,
  9. bool flat = false,
  10. bool flush = false,
  11. bool rule = false,
  12. double? height,
  13. bool loading = false,
  14. bool empty = false,
  15. String emptyTitle = 'No data yet',
  16. String? emptyMessage,
  17. Widget? child,
})

Implementation

const PlexWidgetCard({
  super.key,
  this.eyebrow,
  this.title,
  this.subtitle,
  this.actions,
  this.onMenu,
  this.footer,
  this.tone = PlexWidgetCardTone.standard,
  this.flat = false,
  this.flush = false,
  this.rule = false,
  this.height,
  this.loading = false,
  this.empty = false,
  this.emptyTitle = 'No data yet',
  this.emptyMessage,
  this.child,
});