StacContainer(
decoration: StacBoxDecoration(
gradient: StacGradient.linear(
colors: [StacColors.blue, StacColors.purple],
begin: StacAlignment.topCenter,
end: StacAlignment.bottomCenter,
),
border: StacBorder(
color: StacColors.white,
width: 2.0,
),
borderRadius: StacBorderRadius.all(20.0),
boxShadow: [
StacBoxShadow(
color: StacColors.black,
blurRadius: 15.0,
offset: StacOffset(x: 0.0, y: 8.0),
),
],
),
padding: StacEdgeInsets.all(32.0),
child: StacColumn(
mainAxisSize: StacMainAxisSize.min,
children: [
StacIcon(icon: 'star', color: StacColors.amber, size: 48.0),
StacSizedBox(height: 16.0),
StacText(
data: 'Premium Card',
style: StacTextStyle(
color: StacColors.white,
fontSize: 24.0,
fontWeight: StacFontWeight.bold,
),
),
],
),
)