Flutter SDK Set Background image

后端 未结 10 1783
礼貌的吻别
礼貌的吻别 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 20:54

    You can use DecoratedBox.

    @override
    Widget build(BuildContext context) {
      return DecoratedBox(
        decoration: BoxDecoration(
          image: DecorationImage(image: AssetImage("your_asset"), fit: BoxFit.cover),
        ),
        child: Center(child: FlutterLogo(size: 300)),
      );
    }
    

    Output:

提交回复
热议问题