ShadTableCell.raw constructor

const ShadTableCell.raw({
  1. Key? key,
  2. required ShadTableCellVariant variant,
  3. required Widget child,
  4. AlignmentGeometry? alignment,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. TextStyle? style,
})

Creates a ShadTableCell with a raw variant, allowing explicit variant specification.

A cell widget for use within ShadTable.

Provides styling and structure for table cells, including header and footer variants.

Implementation

const ShadTableCell.raw({
  super.key,
  required this.variant,
  required super.child,
  this.alignment,
  this.height,
  this.padding,
  this.style,
});