MadroidResponsiveListView constructor
const
MadroidResponsiveListView({
- Key? key,
- required int count,
- required List<
Widget> children, - Widget separator = kEmptyWidget,
- bool visible = true,
- ScrollController? controller,
- double spacing = 0.0,
- double margin = 0.0,
- double? marginTop,
- double? marginLeft,
- double? marginRight,
- double? marginBottom,
- double? marginVertical,
- double? marginHorizontal,
- double padding = 0.0,
- double? paddingTop,
- double? paddingLeft,
- double? paddingRight,
- double? paddingBottom,
- double? paddingVertical,
- double? paddingHorizontal,
- Axis scrollDirection = Axis.vertical,
- bool scroll = true,
- bool shrinkWrap = false,
- bool reverse = false,
Implementation
const MadroidResponsiveListView({
super.key,
required this.count,
required this.children,
this.separator = kEmptyWidget,
this.visible = true,
this.controller,
this.spacing = 0.0,
this.margin = 0.0,
this.marginTop,
this.marginLeft,
this.marginRight,
this.marginBottom,
this.marginVertical,
this.marginHorizontal,
this.padding = 0.0,
this.paddingTop,
this.paddingLeft,
this.paddingRight,
this.paddingBottom,
this.paddingVertical,
this.paddingHorizontal,
this.scrollDirection = Axis.vertical,
this.scroll = true,
this.shrinkWrap = false,
this.reverse = false,
}) : assert(count > 0, '"columnCount" must be a positive integer value');