The Stac Column allows you to build a Flutter column widget using JSON. To know more about the column widget in Flutter, refer to the official documentation.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.
Properties
| Property | Type | Description |
|---|---|---|
| mainAxisAlignment | StacMainAxisAlignment | How the children should be placed along the main axis. Defaults to MainAxisAlignment.start. |
| crossAxisAlignment | StacCrossAxisAlignment | How the children should be placed along the cross axis. Defaults to CrossAxisAlignment.center. |
| mainAxisSize | StacMainAxisSize | How much space should be occupied in the main axis. Defaults to MainAxisSize.max. |
| textDirection | StacTextDirection | The text direction to use for resolving alignment. |
| verticalDirection | StacVerticalDirection | The vertical direction to use for laying out children. Defaults to VerticalDirection.down. |
| textBaseline | StacTextBaseline | The baseline to use for aligning text. |
| spacing | double | The spacing between children. Defaults to 0. |
| children | List<StacWidget> | The list of widgets to display inside the column. Defaults to an empty list. |
Example
- Dart
- JSON
- Preview