PageView constructor

PageView({
  1. List<DslWidget>? children,
  2. int initialPage = 0,
  3. bool allowScrolling = true,
  4. bool horizontal = true,
  5. double? width,
  6. double? height,
  7. bool showIndicator = true,
  8. String? name,
  9. Object? visible,
})

Implementation

PageView({
  List<DslWidget>? children,
  this.initialPage = 0,
  this.allowScrolling = true,
  this.horizontal = true,
  this.width,
  this.height,
  this.showIndicator = true,
  String? name,
  Object? visible,
}) : children = List.unmodifiable(children ?? const <DslWidget>[]),
     super(name: name, visible: _normalizeVisibility(visible));