SingleChildScrollView constructor
SingleChildScrollView({
- required Widget child,
- EdgeInsets? padding,
- ScrollController? controller,
- bool handleKeys = true,
- int mouseWheelDelta = 3,
- bool enableSelection = false,
- Key? key,
Implementation
SingleChildScrollView({
required this.child,
this.padding,
this.controller,
this.handleKeys = true,
this.mouseWheelDelta = 3,
this.enableSelection = false,
super.key,
});