Skip to main content

SizedBox

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

Properties

PropertyTypeDescription
widthdouble?The width of the SizedBox
heightdouble?The height of the SizedBox
childMap<String, dynamic>?The child widget inside the SizedBox

Example JSON

{
  "type": "sizedBox",
  "height": 25
}
I