HareLayout constructor

const HareLayout({
  1. Key? key,
  2. required List<Widget> children,
  3. double itemWidth = 240,
  4. LastRow lastRow = LastRow.lastItem,
  5. EdgeInsets padding = const EdgeInsets.all(0),
  6. double spaceX = 8,
  7. double spaceY = 8,
})

Implementation

const HareLayout({
  super.key,
  required super.children,
  this.itemWidth = 240,
  this.lastRow = LastRow.lastItem,
  this.padding = const EdgeInsets.all(0),
  this.spaceX = 8,
  this.spaceY = 8,
});