Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Documentation for Divider
double
StacColor
StacDivider( thickness: 2.0, color: StacColors.red, indent: 16.0, endIndent: 16.0, )
{ "type": "divider", "thickness": 2, "color": "#FF0000", "indent": 16, "endIndent": 16 }
StacColumn( children: [ StacListTile( title: StacText(data: 'Item 1'), ), StacDivider( height: 1.0, thickness: 1.0, color: StacColors.grey, ), StacListTile( title: StacText(data: 'Item 2'), ), StacDivider( height: 1.0, thickness: 1.0, color: StacColors.grey, ), StacListTile( title: StacText(data: 'Item 3'), ), ], )
{ "type": "column", "children": [ { "type": "listTile", "title": { "type": "text", "data": "Item 1" } }, { "type": "divider", "height": 1.0, "thickness": 1.0, "color": "#E0E0E0" }, { "type": "listTile", "title": { "type": "text", "data": "Item 2" } }, { "type": "divider", "height": 1.0, "thickness": 1.0, "color": "#E0E0E0" }, { "type": "listTile", "title": { "type": "text", "data": "Item 3" } } ] }