PageView
2020-08-09 本文已影响0人
不二客
PageView({
Key key,
this.scrollDirection = Axis.horizontal, //滚动方向
this.reverse = false,//滚动的视图是否按阅读方向滚动。
PageController controller,
this.physics,//滚动模式 滚动视图应该如何响应用户输入。
this.pageSnapping = true,//设置为false可禁用页面捕捉,对于自定义滚动行为非常有用。
this.onPageChanged,//页面更改时调用。
List<Widget> children = const <Widget>[],//
this.dragStartBehavior = DragStartBehavior.start,//处理拖动开始行为的方式。
this.allowImplicitScrolling = false,//控制小部件的页面是否响应[RenderObject.shownscreen],这将允许隐式访问滚动。
})