AnchorlableScrollColumn constructor
const
AnchorlableScrollColumn({
- Key? key,
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
- MainAxisSize mainAxisSize = MainAxisSize.max,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
- TextDirection? textDirection,
- VerticalDirection verticalDirection = VerticalDirection.down,
- TextBaseline? textBaseline,
- List<
Widget> children = const <Widget>[], - Axis scrollDirection = Axis.vertical,
- bool reverse = false,
- required AnchorlableController controller,
- bool? primary,
- ScrollPhysics? physics,
- ScrollBehavior? scrollBehavior,
- bool shrinkWrap = false,
- Key? center,
- double anchor = 0.0,
- double? cacheExtent,
- int? semanticChildCount,
- DragStartBehavior dragStartBehavior = DragStartBehavior.start,
- ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
- String? restorationId,
- 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);