StacWrap(
spacing: 8.0,
runSpacing: 4.0,
children: [
StacContainer(
color: StacColors.red,
width: 100,
height: 100,
child: StacCenter(child: StacText(data: '1', style: StacTextStyle(color: StacColors.white))),
),
StacContainer(
color: StacColors.pink,
width: 100,
height: 100,
child: StacCenter(child: StacText(data: '2', style: StacTextStyle(color: StacColors.white))),
),
StacContainer(
color: StacColors.purple,
width: 100,
height: 100,
child: StacCenter(child: StacText(data: '3', style: StacTextStyle(color: StacColors.white))),
),
StacContainer(
color: StacColors.deepPurple,
width: 100,
height: 100,
child: StacCenter(child: StacText(data: '4', style: StacTextStyle(color: StacColors.white))),
),
],
)