Flutter SDK Set Background image

后端 未结 10 1790
礼貌的吻别
礼貌的吻别 2020-11-30 20:38

I am trying to set a background image for the home page. I am getting the image place from start of the screen and filling the width but not the height. Am I missing someth

10条回答
  •  情歌与酒
    2020-11-30 21:11

    We can use Container and mark its height as infinity

    body: Container(
          height: double.infinity,
          width: double.infinity,
          child: FittedBox(
            fit: BoxFit.cover,
            child: Image.network(
              'https://cdn.pixabay.com/photo/2016/10/02/22/17/red-t-shirt-1710578_1280.jpg',
            ),
          ),
        ));
    

    Output:

提交回复
热议问题