NesSingleChildScrollView constructor

const NesSingleChildScrollView({
  1. Key? key,
  2. required Widget child,
  3. Axis direction = Axis.vertical,
  4. ScrollController? scrollController,
  5. bool clipContent = false,
})

A scroll view that can host a single child widget inside itself.

Implementation

const NesSingleChildScrollView({
  super.key,
  required this.child,
  this.direction = Axis.vertical,
  this.scrollController,
  this.clipContent = false,
});