ShadTableCell constructor

const ShadTableCell({
  1. Key? key,
  2. required Widget child,
  3. AlignmentGeometry? alignment,
  4. double? height,
  5. EdgeInsetsGeometry? padding,
  6. 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;