StacColumn(
children: [
// Rounded Rectangle
StacElevatedButton(
style: StacButtonStyle(
shape: StacRoundedRectangleBorder(
borderRadius: StacBorderRadius.all(8.0),
),
),
child: StacText(data: 'Rounded'),
),
StacSizedBox(height: 8.0),
// Stadium (pill shape)
StacElevatedButton(
style: StacButtonStyle(
shape: StacRoundedRectangleBorder(
borderRadius: StacBorderRadius.all(50.0),
),
),
child: StacText(data: 'Stadium'),
),
StacSizedBox(height: 8.0),
// Circle
StacElevatedButton(
style: StacButtonStyle(
shape: StacCircleBorder(),
minimumSize: StacSize(width: 56.0, height: 56.0),
),
child: StacIcon(icon: 'favorite'),
),
],
)