资产图像作为卡片背景,在 Flutter 中顶部带有文本

Asset image as a Card background with text on top in Flutter

我在 flutter 中使用 Card 小部件来显示文本。我想使用资产图像作为卡片的 background/texture,并在顶部显示文本。我无法弄清楚如何正确地对小部件进行分层。非常感谢任何见解。

做这样的事情:

    Card(
      child: Container(
        decoration: BoxDecoration(
          image: DecorationImage(
            image: AssetImage("images/image.png"),
            fit: BoxFit.fitWidth,
            alignment: Alignment.topCenter,
          ),
        ),
        child: Text("YOUR TEXT"),
      ),
    ),