PageView

作者: 不二客 | 来源:发表于2020-08-09 09:24 被阅读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],这将允许隐式访问滚动。
 })

相关文章

网友评论

      本文标题:PageView

      本文链接:https://www.haomeiwen.com/subject/nhywrktx.html