Skip to main content

Center

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
widthFactordouble?The factor by which to multiply the child’s width.
heightFactordouble?The factor by which to multiply the child’s height.
childMap<String, dynamic>?The widget to display inside the center.

Example JSON

{
  "type": "center",
  "child": {
    "type": "text",
    "data": "Hello, World!"
  }
}
I