TTableRowCardTheme constructor

const TTableRowCardTheme({
  1. EdgeInsets margin = const EdgeInsets.only(bottom: 8),
  2. EdgeInsets padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  3. double elevation = 1,
  4. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(8)),
  5. required WidgetStateProperty<Color> backgroundColor,
  6. required WidgetStateProperty<Border> border,
  7. required TextStyle? contentTextStyle,
})

Creates a table row card theme.

Implementation

const TTableRowCardTheme({
  this.margin = const EdgeInsets.only(bottom: 8),
  this.padding = const EdgeInsets.symmetric(vertical: 12, horizontal: 16),
  this.elevation = 1,
  this.borderRadius = const BorderRadius.all(Radius.circular(8)),
  required this.backgroundColor,
  required this.border,
  required this.contentTextStyle,
});