Fluttter中让 Container 充满整个屏幕

在Contianer节点添加 width 和height属性

body: Center(
//        widthFactor: double.infinity,
          child: Container(
            width: double.infinity,
            height: double.infinity,
            child: Image.network("http://jspang.com/static/myimg/WechatIMG12.jpeg"),
            color: Colors.lightBlue,
//          color: Color.fromARGB(255, 255, 0, 0),
          ),

就可以解决了

你可能感兴趣的:(Flutter)