Skip to main content

Vertical Divider

The Stac Vertical Divider allows you to build a Flutter vertical divider widget using JSON. To know more about the vertical divider widget in Flutter, refer to the official documentation.

Properties

PropertyTypeDescription
widthStacDouble?The width of the divider.
thicknessStacDouble?The thickness of the divider.
indentStacDouble?The amount of space to indent the divider.
endIndentStacDouble?The amount of space to indent the divider at the end.
colorString?The color of the divider.

Example JSON

{
  "type": "verticalDivider",
  "width": 20,
  "thickness": 4,
  "indent": 10,
  "endIndent": 10,
  "color": "#21814C"
}
I