ScrollView constructor

ScrollView({
  1. required Widget child,
  2. ScrollController? controller,
  3. bool handleKeys = true,
  4. int mouseWheelDelta = 3,
  5. bool enableSelection = false,
  6. bool autoCopySelectionOnMouseUp = false,
  7. bool autoCopySelectionOnExit = false,
  8. bool clearSelectionAfterAutoCopy = true,
  9. Key? key,
})

Creates a scroll view.

Implementation

ScrollView({
  required this.child,
  this.controller,
  this.handleKeys = true,
  this.mouseWheelDelta = 3,
  this.enableSelection = false,
  this.autoCopySelectionOnMouseUp = false,
  this.autoCopySelectionOnExit = false,
  this.clearSelectionAfterAutoCopy = true,
  super.key,
});