1

我在高层有滚动条,在树的下面有几个级别的子滚动条。当滚动孩子时,父母也滚动。只是滚动条在父级中显示和移动。这不会反过来发生。我尝试将孩子包裹在手势检测器中,但没有奏效。顺便说一句,这是网络

在此处输入图像描述

这是父布局小部件(子级是子级将呈现的位置):

Scrollbar(
    controller: layoutScrollController,
    child: SingleChildScrollView(
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.start,
        children: <Widget>[
          if(title != null) Container(
            height: 67,
            width: MediaQuery.of(context).size.width,
            decoration: BoxDecoration(
                color:Theme.of(context).brightness == Brightness.dark ? GatheredThemeColors.light[850] : Colors.white,
                border: Border(
                    bottom: BorderSide(
                        color: Theme.of(context).brightness == Brightness.dark ? GatheredThemeColors.light[800] : GatheredThemeColors.light[200],
                        width: 1
                    )
                )
            ),
            padding: EdgeInsets.all(20),
            child: Text(title,style: Theme.of(context).textTheme.headline1,),
          ),
          Container(
            padding: EdgeInsets.all(20),
            constraints: BoxConstraints(minHeight: 200),
            child: child,
          ),
        ],
      ),
    ),
  );
}

在下图中,“报告”区域是导致父级滚动的子级。查找报告列表。报告列表是一个 ListView 小部件。

在此处输入图像描述

4

1 回答 1

1

这是一个解决方法,我找不到参考,但看起来颤振团队希望解决这个问题。

这里是。像这样包装滚动条:

NotificationListener<ScrollNotification>(
    onNotification: (notification) => true,
    child: Scrollbar()
)
于 2020-05-07T14:51:01.730 回答