body: SingleChildScrollView(
child: InkWell(
splashColor: Colors.black87,
onTap: () {},
child: Ink.image(
image: Image.asset('images/logo.png'), // here
height: 100,
width: 400,
fit: BoxFit.cover,
),
),
),
我想在文本按钮上应用资源图像
3条答案
按热度按时间2w2cym1i1#
您可以使用
AssetImage
afdcj2ne2#
它需要ImageProvider类型的图像,您可以使用以下命令对其进行更改
w8ntj3qf3#
请尝试以下代码: