TTableRowCardTheme constructor
const
TTableRowCardTheme({
- EdgeInsets margin = const EdgeInsets.only(bottom: 8),
- EdgeInsets padding = const EdgeInsets.all(12),
- double elevation = 1,
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(12)),
- required WidgetStateProperty<
Color> backgroundColor, - required WidgetStateProperty<
Border> border, - required TextStyle? contentTextStyle,
Creates a table row card theme.
Implementation
const TTableRowCardTheme({
this.margin = const EdgeInsets.only(bottom: 8),
this.padding = const EdgeInsets.all(12),
this.elevation = 1,
this.borderRadius = const BorderRadius.all(Radius.circular(12)),
required this.backgroundColor,
required this.border,
required this.contentTextStyle,
});