SingleChildScrollView constructor
const
SingleChildScrollView({
- required Widget child,
- LayoutDirection scrollDirection = LayoutDirection.vertical,
- DiscreteScrollController? controller,
- required int childLength,
Creates a new SingleChildScrollView.
Implementation
const SingleChildScrollView({
required this.child,
this.scrollDirection = LayoutDirection.vertical,
this.controller,
required this.childLength,
});