SingleChildScrollView constructor

const SingleChildScrollView({
  1. required Widget child,
  2. LayoutDirection scrollDirection = LayoutDirection.vertical,
  3. DiscreteScrollController? controller,
  4. required int childLength,
})

Creates a new SingleChildScrollView.

Implementation

const SingleChildScrollView({
  required this.child,
  this.scrollDirection = LayoutDirection.vertical,
  this.controller,
  required this.childLength,
});