我想让图像扩展到卡片的大小

I want the image to expand to the size of the card

我想在卡片中放一张图片,但是图片溢出了

这是我的代码:

Card(
        clipBehavior: Clip.antiAlias,
        elevation: 5.0,
        shape: RoundedRectangleBorder(
          side: BorderSide(width: 0.1),
          borderRadius: BorderRadius.circular(24),
        ),
        child: Ink(
          decoration: BoxDecoration(
            gradient: LinearGradient(
              colors: [AppColors.secundary, Colors.lime],
            ),
          ),
          child: Column(
            children: <Widget>[
              Image.asset(
                AppImages.audi1,
              ),
              ListTile(
                title: const Text('Acidente'),
              ),
            ],
          ),
        ),
      ),

看看你怎么样

尝试使用堆栈和适合的框,如果更改文本的位置,您将使用 Align 小部件

Stack(
            children: <Widget>
             FittedBox(
                 child: Image.asset(
                AppImages.audi1,
              ),
               fit: BoxFit.fill,
             ),
              
              ListTile(
                title: const Text('Acidente'),
              ),
            ],
          ),