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.

Table Border

StacTableBorder allows you to define the Flutter TableBorder class using JSON. To know more about the TableBorder class in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
colorStringDefines the color of the table border.
widthdoubleDefines the width of the table border.
styleBorderStyleDefines the style of the table border.
borderRadiusStacBorderRadiusDefines the border radius of the table border.

Example

StacTableBorder(
  color: StacColors.black,
  width: 1.0,
  style: StacBorderStyle.solid,
  borderRadius: StacBorderRadius(
    topLeft: 16.0,
    topRight: 16.0,
    bottomLeft: 16.0,
    bottomRight: 16.0,
  ),
)