> ## 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 Column Width

> Documentation for Table Column Width

# Table Column Width

StacTableColumnWidth allows you to build the Flutter TableColumnWidth class using JSON.
To know more about the TableColumnWidth class in Flutter, refer to the [official documentation](https://api.flutter.dev/flutter/rendering/TableColumnWidth-class.html).

## Properties

| Property | Type                    | Description                                                                                                                              |
| -------- | ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| type     | `StacTableColumnWidth?` | Defines the type of columnWidth to be used. Can be `fixedColumnWidth`, `flexColumnWidth`, `fractionColumnWidth` & `intrinsicColumnWidth` |
| value    | `double?`               | Defines the value to be assigned to columnWidth. e.g. `5.0` would be `5px` in case of `fixedColumnWidth`                                 |

## Example

<CodeGroup>
  ```dart Dart theme={null}
  StacFixedColumnWidth(value: 200.0)
  ```

  ```json JSON theme={null}
  {
      "type": "fixedColumnWidth",
      "value": 200.0
  }
  ```
</CodeGroup>
