Utilities for controlling the size of the shadow below the material and the opacity of the elevation overlay color if it is applied.
Card(
elevation: StiloElevation.z10,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
const ListTile(
title: Text('Hello World'),
),
],
),
)