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