flutter图片全屏

new ConstrainedBox(
  constraints: BoxConstraints.expand(),
  child: new Image.asset(
  "assets/images/ad.png",
    fit: BoxFit.fill,
  ),
),

你可能感兴趣的:(flutter图片全屏)