StacSliverPadding(
padding: StacEdgeInsets.all(16),
sliver: StacSliverToBoxAdapter(
child: StacContainer(
height: 150,
color: StacColors.green,
child: StacCenter(
child: StacText(
data: 'I am a Box inside a SliverToBoxAdapter!',
style: StacTextStyle(color: StacColors.white, fontWeight: StacFontWeight.bold),
),
),
),
),
)