📅  最后修改于: 2022-03-11 14:58:08.793000             🧑  作者: Mango
Material(
elevation: 4.0,
clipBehavior: Clip.hardEdge,
color: Colors.transparent,
child: Stack(
alignment: Alignment.bottomCenter,
fit: StackFit.passthrough,
children: [
Ink.image(
image: AssetImage(imagePath),
fit: BoxFit.cover,
width: 120,
height: 120,
child: InkWell(onTap: () {}),
),
Align(
alignment: Alignment.bottomCenter,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(label, style: const TextStyle(fontSize: 20)),
),
)
],
),
);