FillSingleChildScrollView constructor

const FillSingleChildScrollView({
  1. Key? key,
  2. ScrollController? controller,
  3. Axis scrollDirection = Axis.vertical,
  4. bool reverse = false,
  5. EdgeInsetsGeometry? padding,
  6. bool? primary,
  7. ScrollPhysics? physics,
  8. DragStartBehavior dragStartBehavior = DragStartBehavior.start,
  9. Clip clipBehavior = Clip.hardEdge,
  10. String? restorationId,
  11. required Widget child,
})

Implementation

const FillSingleChildScrollView({
  Key? key,
  this.controller,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.padding,
  this.primary,
  this.physics,
  this.dragStartBehavior = DragStartBehavior.start,
  this.clipBehavior = Clip.hardEdge,
  this.restorationId,
  required this.child,
}) : super(key: key);