Flutter SingleChildScrollView滚动到PageView

时间:2019-04-01 13:26:59

标签: dart flutter flutter-layout

Stack(children: <Widget>[
  TopViewport(
      sizedBoxHeight: sizedBoxHeight,
      widget: widget,
      images: images,
      controller: _controller,
      isNew: isNew,
      activePage: _activePage),
  ScrollableContent(
    widget: widget,
    boxHeight: sizedBoxHeight,
  ),
])

在此示例中,TopViewPort是垂直PageView,其中包含一些图像。而ScrollableContentSingleChildScrollView,我想做的是,当用户滚动PageView图像滑动机制时,以及当用户从ScrollableContent滑动整个内容时,应该滚动到图像上。现在,通过此示例,我可以在ScrollableContent上方滑动PageView,但现在无法再使用PageView垂直幻灯片了。有没有一种方法可以用flutter或其他小部件来实现这种行为?任何帮助表示赞赏。

0 个答案:

没有答案