我想要卡片中的背景图片,该图片在列表中。我用下面的代码尝试了一下,但是不知道为什么它不起作用。
body: ListView(
children: <Widget>[
Card(
child: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("images/logo.png"),
fit: BoxFit.cover,
),
),
child: InkWell(
splashColor: Colors.blue.withAlpha(30),
onTap: () {
Navigator.pushNamed(context, "/workout1");
},
child: Container(
child: Text("Workout 1", style: TextStyle(fontSize: 20)),
height: 150,
color: Colors.blue,
),
),
),
),
],
),