Skip to main content
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!'),
)