AppSingleChildScrollView constructor

const AppSingleChildScrollView({
  1. Key? key,
  2. Widget? child,
  3. ScrollController? controller,
  4. Axis scrollDirection = Axis.vertical,
  5. bool reverse = false,
})

Implementation

const AppSingleChildScrollView({
  super.key,
  this.child,
  this.controller,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
});