AnchorlableScrollColumn constructor

const AnchorlableScrollColumn({
  1. Key? key,
  2. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  3. MainAxisSize mainAxisSize = MainAxisSize.max,
  4. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  5. TextDirection? textDirection,
  6. VerticalDirection verticalDirection = VerticalDirection.down,
  7. TextBaseline? textBaseline,
  8. List<Widget> children = const <Widget>[],
  9. Axis scrollDirection = Axis.vertical,
  10. bool reverse = false,
  11. required AnchorlableController controller,
  12. bool? primary,
  13. ScrollPhysics? physics,
  14. ScrollBehavior? scrollBehavior,
  15. bool shrinkWrap = false,
  16. Key? center,
  17. double anchor = 0.0,
  18. double? cacheExtent,
  19. int? semanticChildCount,
  20. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  21. ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
  22. String? restorationId,
  23. Clip clipBehavior = Clip.hardEdge,
})

Implementation

const AnchorlableScrollColumn(
    {super.key,
    this.mainAxisAlignment = MainAxisAlignment.start,
    this.mainAxisSize = MainAxisSize.max,
    this.crossAxisAlignment = CrossAxisAlignment.center,
    this.textDirection,
    this.verticalDirection = VerticalDirection.down,
    this.textBaseline,
    this.children = const <Widget>[],
    super.scrollDirection = Axis.vertical,
    super.reverse = false,
    required AnchorlableController controller,
    super.primary,
    super.physics,
    super.scrollBehavior,
    super.shrinkWrap = false,
    super.center,
    super.anchor = 0.0,
    super.cacheExtent,
    super.semanticChildCount,
    super.dragStartBehavior = DragStartBehavior.start,
    super.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
    super.restorationId,
    super.clipBehavior = Clip.hardEdge})
    : super(controller: controller);