const StacSliverGrid(
crossAxisCount: 2,
mainAxisSpacing: 16,
crossAxisSpacing: 16,
childAspectRatio: 1,
children: [
StacContainer(
color: StacColor('#4CAF50'),
child: StacCenter(
child: StacText(
data: 'Grid Item 1',
style: StacTextStyle(
color: StacColor('#FFFFFF'),
fontWeight: StacFontWeight.bold,
),
),
),
),
StacContainer(
color: StacColor('#4CAF50'),
child: StacCenter(
child: StacText(
data: 'Grid Item 2',
style: StacTextStyle(
color: StacColor('#FFFFFF'),
fontWeight: StacFontWeight.bold,
),
),
),
),
StacContainer(
color: StacColor('#4CAF50'),
child: StacCenter(
child: StacText(
data: 'Grid Item 3',
style: StacTextStyle(
color: StacColor('#FFFFFF'),
fontWeight: StacFontWeight.bold,
),
),
),
),
StacContainer(
color: StacColor('#4CAF50'),
child: StacCenter(
child: StacText(
data: 'Grid Item 4',
style: StacTextStyle(
color: StacColor('#FFFFFF'),
fontWeight: StacFontWeight.bold,
),
),
),
),
],
)