SingleChildScrollView constructor

SingleChildScrollView({
  1. required Widget child,
  2. EdgeInsets? padding,
  3. ScrollController? controller,
  4. bool handleKeys = true,
  5. int mouseWheelDelta = 3,
  6. bool enableSelection = false,
  7. Key? key,
})

Implementation

SingleChildScrollView({
  required this.child,
  this.padding,
  this.controller,
  this.handleKeys = true,
  this.mouseWheelDelta = 3,
  this.enableSelection = false,
  super.key,
});