Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.stac.dev/llms.txt

Use this file to discover all available pages before exploring further.

StacTableCell allows you to define the Flutter TableCell widget using JSON. To know more about the TableCell widget in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
verticalAlignmentTableCellVerticalAlignment?Defines the verticalAlignment for the table cell. Can be top, middle, bottom, baseline, fill & intrinsicHeight Defaults to top.
childMap<String, dynamic>The child widget of the table cell.

Example

StacTableCell(
  verticalAlignment: StacTableCellVerticalAlignment.top,
  child: StacContainer(
    color: '#40000000',
    height: 50.0,
    child: StacCenter(
      child: StacText(data: 'Header 1'),
    ),
  ),
)