当我尝试在我的应用程序中加载图像时,感觉它以某种方式无法正确拉伸。我尝试了“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,
),
),
)
我应该怎么做才能制作原始质量的图像?