PageView.custom constructor
Creates a scrollable list that works page by page with a custom child model.
Implementation
PageView.custom({
Key key,
this.scrollDirection = Axis.horizontal,
this.reverse = false,
PageController controller,
this.physics,
this.pageSnapping = true,
this.onPageChanged,
@required this.childrenDelegate,
}) : assert(childrenDelegate != null),
controller = controller ?? _defaultPageController,
super(key: key);