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.

The Stac Expanded allows you to build a Flutter expanded widget using JSON. To know more about the expanded widget in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
flexintThe flex factor to use for the expanded widget. Defaults to 1.
childStacWidgetThe widget to display inside the expanded widget.

Example

StacExpanded(
  flex: 2,
  child: StacText(data: 'Hello, World!'),
)