ResponsiveList constructor

const ResponsiveList({
  1. Key? key,
  2. double? desiredItemWidth,
  3. double minSpacing = 0,
  4. bool squareCells = false,
  5. bool scroll = true,
  6. List<Widget>? children,
  7. MainAxisAlignment rowMainAxisAlignment = MainAxisAlignment.start,
})

Creates a ResponsiveList with the given parameters.

Implementation

const ResponsiveList({super.key, this.desiredItemWidth, this.minSpacing = 0, this.squareCells = false, this.scroll = true, this.children, this.rowMainAxisAlignment = MainAxisAlignment.start});