SingleChildScrollView constructor
const
SingleChildScrollView({
- Key? key,
- required Widget child,
- ScrollController? controller,
- Axis scrollDirection = Axis.vertical,
- EdgeInsets? padding,
- FocusNode? focusNode,
Creates a SingleChildScrollView with the given child.
Implementation
const SingleChildScrollView({
super.key,
required this.child,
this.controller,
this.scrollDirection = Axis.vertical,
this.padding,
this.focusNode,
});