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 Limited Box
maxHeight
double
double.infinity
maxWidth
child
StacWidget
StacLimitedBox( child: StacContainer( width: 100, height: 100, color: StacColors.red, ), )
{ "type": "limitedBox", "child": { "type": "container", "width": 100, "height": 100, "color": "#FF0000" } }
StacLimitedBox( maxHeight: 200.0, maxWidth: 300.0, child: StacText( data: 'Hello, World! from Limited Box', style: StacTextStyle(fontSize: 16, color: StacColors.black), ), )
{ "type": "limitedBox", "maxHeight": 200.0, "maxWidth": 300.0, "child": { "type": "text", "data": "Hello, World! from Limited Box", "style": { "fontSize": 16, "color": "#000000" } } }