如何同步滚动两个SingleChildScrollView小部件?
new Positioned(
child: new SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: new Scale()
),
),
new Positioned(
child: new SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: new chart()
)
)
我需要这两个小部件具有完全相同的滚动位置(两者都具有相同的宽度,并且只能水平滚动)。它必须在用户操作后和代码中更改时同步。
答案 0 :(得分:1)
对于输入,您可以通过作为构造函数参数传入的ScrollController来控制它们。
对于输出,您可以使用NotificationListener来监听其中的移动,然后使用ScrollController将它们同步到一起。
你可以听https://docs.flutter.io/flutter/widgets/UserScrollNotification-class.html之类的东西让它们紧紧绑定或等待https://docs.flutter.io/flutter/widgets/ScrollEndNotification-class.html,然后在ScrollController上调用https://docs.flutter.io/flutter/widgets/ScrollController/animateTo.html。
答案 1 :(得分:1)
就像xster所说的那样,您必须在一个滚动视图上使用scrollcontroller,在另一个滚动视图上使用notification Listener,这是代码。
class StackO extends StatefulWidget {
// const stack({Key key}) : super(key: key);
@override
_StackOState createState() => _StackOState();
}
class _StackOState extends State<StackO> {
ScrollController _scrollController = new ScrollController();
@override
Widget build(BuildContext context) {
return Container(
child: Column(
children: <Widget>[
new Positioned(
child: new SingleChildScrollView(
controller: _scrollController,
scrollDirection: Axis.horizontal,
child: new Scale() // your widgets,
),
),
new Positioned(
child: new NotificationListener<ScrollNotification>(
onNotification: (ScrollNotification scrollInfo) {
print('scrolling.... ${scrollInfo.metrics.pixels}');
_scrollController.jumpTo(scrollInfo.metrics.pixels);
return false;
},
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: new chart() // your widgets,
),
),
),
],
),
);
}
}