How to show image from network in flutter BoxDecoration?

前端 未结 2 1774
感动是毒
感动是毒 2021-02-01 16:41

I want to show an image of the network in BoxDecoration. But its showing error

\"The argument type \'image\' can\'t be assigned to the parameter type \'i

2条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-01 17:28

    I've resolved the issue, it can be achieved using this code.

    decoration: BoxDecoration(
          image: DecorationImage(image: NetworkImage("urlImage"),
          fit: BoxFit.cover)
        ),
    

提交回复
热议问题