Flutter SingleChildScrollView移除滚动空白

时间:2019-12-09 08:11:37

标签: flutter

我要删除左侧空白。

https://streamable.com/mx66v

我的代码是:

  @override
  Widget build(BuildContext context) {
    imgWidth = MediaQuery
        .of(context)
        .size
        .width / 3.5;
    var imgs = this.item.Records.map((record) => Image.network(record.Picture, width: this.imgWidth,)).toList();
    return SingleChildScrollView(
      scrollDirection: Axis.horizontal,
      child: Row(
        children: imgs,
      ),
    );
  }

我该怎么做。

1 个答案:

答案 0 :(得分:2)

您可以将physics的{​​{1}}属性设置为SingleChildScrollView
您可以在
下面复制粘贴运行完整代码 代码段

ClampingScrollPhysics

演示

enter image description here

完整代码

return SingleChildScrollView(
      scrollDirection: Axis.horizontal,
      physics: ClampingScrollPhysics(), 
      child: Row(
        children: imgs,
      )