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 Colored Box allows you to build a Flutter colored box widget using JSON. To know more about the colored box widget in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
colorStacColorThe color to paint the background of the box.
childStacWidgetThe widget to display inside the colored box.

Example

StacColoredBox(
  color: StacColors.red,
  child: StacText(data: 'Hello, World!'),
)