ShadTableCell constructor
const
ShadTableCell({
- Key? key,
- required Widget child,
- AlignmentGeometry? alignment,
- double? height,
- EdgeInsetsGeometry? padding,
- TextStyle? style,
A cell widget for use within ShadTable.
Provides styling and structure for table cells, including header and footer variants.
Implementation
const ShadTableCell({
super.key,
required super.child,
this.alignment,
this.height,
this.padding,
this.style,
}) : variant = ShadTableCellVariant.cell;