CustomSingleChildScrollView constructor
const
CustomSingleChildScrollView({
- Key? key,
- required Widget child,
- ScrollPhysics? physics,
- bool reverse = false,
- ScrollController? controller,
- EdgeInsetsGeometry? padding,
- bool shrinkWrap = false,
- Axis scrollDirection = Axis.vertical,
Implementation
const CustomSingleChildScrollView({
super.key,
required this.child,
ScrollPhysics? physics,
this.reverse = false,
this.controller,
this.padding,
this.shrinkWrap = false,
this.scrollDirection = Axis.vertical,
}) : physics = const BouncingScrollPhysics();