Skip to main content
The Stac Center allows you to build a Flutter center widget using JSON. To know more about the center widget in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
widthFactordoubleThe factor by which to multiply the child’s width.
heightFactordoubleThe factor by which to multiply the child’s height.
childStacWidgetThe widget to display inside the center.

Example

StacCenter(
  child: StacText(data: 'Hello, World!'),
)