1

原始图像

截屏

当我尝试在我的应用程序中加载图像时,感觉它以某种方式无法正确拉伸。我尝试了“fit”参数的所有选项但什么也没发生

这是我的代码

SingleChildScrollView(
  child: Container(
    width: width,
    child: Image.network(
      'https://img4.manga-chan.me/manga/-9new/t/1568958338_the-gamer-tom-4-glava-290/001.png',
      filterQuality: FilterQuality.high,
      fit: BoxFit.cover,
    ),
  ),
)

我应该怎么做才能制作原始质量的图像?

4

1 回答 1

-1

做到了,它帮助了我

包裹在容器中的卷轴

double width = MediaQuery.of(context).size.width;
double height = MediaQuery.of(context).size.height;

Container(
  width: width,
  height: height,
  child: SingleChildScrollView(
    child: Image.network(
      'https://img4.manga-chan.me/manga/-9new/t/1571807955_the-gamer-tom-4-glava-296/002.png',
      filterQuality: FilterQuality.high,
      fit: BoxFit.fitWidth,
    ),
  ),
)
于 2020-01-03T14:21:42.947 回答