如何获取卡片的背景图片?

时间:2020-04-25 18:42:31

标签: flutter flutter-layout

我想要卡片中的背景图片,该图片在列表中。我用下面的代码尝试了一下,但是不知道为什么它不起作用。

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,
          ),
        ),
      ),
    ),
  ],
),

0 个答案:

没有答案